Skip to content

Commit

Permalink
CI check 2
Browse files Browse the repository at this point in the history
Signed-off-by: John Nunley <dev@notgull.net>
  • Loading branch information
notgull committed Jan 1, 2024
1 parent 8575c97 commit a3e22d9
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion axum/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -117,6 +117,7 @@ rustversion = "1.0.9"
[dev-dependencies]
anyhow = "1.0"
axum-macros = { path = "../axum-macros", version = "0.4.0", features = ["__private"] }
futures-util = "0.3"
quickcheck = "1.0"
quickcheck_macros = "1.0"
reqwest = { version = "0.11.14", default-features = false, features = ["json", "stream", "multipart"] }
Expand Down Expand Up @@ -198,7 +199,6 @@ allowed = [
# not 1.0
"futures_core",
"futures_sink",
"futures_util",
"tower_layer",
"tower_service",

Expand Down
2 changes: 1 addition & 1 deletion axum/src/extract/ws.rs
Original file line number Diff line number Diff line change
Expand Up @@ -160,7 +160,7 @@ impl<F> WebSocketUpgrade<F> {
/// It is often more optimal to allow them to buffer a little, hence the default value.
///
/// Note: [`flush`] will always fully write the buffer regardless.
///
///
/// [`flush`]: https://docs.rs/futures-util/latest/futures_util/sink/trait.SinkExt.html#method.flush
pub fn write_buffer_size(mut self, size: usize) -> Self {
self.config.write_buffer_size = size;
Expand Down

0 comments on commit a3e22d9

Please sign in to comment.