Skip to content

Commit

Permalink
Suppress warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
billy1624 committed Nov 15, 2021
1 parent c879d04 commit 8e7dc55
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 1 deletion.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ serde = { version = "^1.0", features = ["derive"] }
serde_json = { version = "^1", optional = true }
sqlx = { version = "^0.5", optional = true }
uuid = { version = "0.8", features = ["serde", "v4"], optional = true }
ouroboros = { version = "0.13", git = "https://github.com/billy1624/ouroboros.git", branch = "missing-docs" }
ouroboros = "0.11"
url = "^2.2"

[dev-dependencies]
Expand Down
2 changes: 2 additions & 0 deletions src/database/stream/query.rs
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
#![allow(missing_docs)]

use std::{pin::Pin, task::Poll};

#[cfg(feature = "mock")]
Expand Down
2 changes: 2 additions & 0 deletions src/database/stream/transaction.rs
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
#![allow(missing_docs)]

use std::{ops::DerefMut, pin::Pin, task::Poll};

use futures::Stream;
Expand Down

0 comments on commit 8e7dc55

Please sign in to comment.