Skip to content

Commit d710431

Browse files
authored
Update tokio-tungstenite to 0.27 (#3398)
1 parent 0f255c3 commit d710431

File tree

5 files changed

+105
-39
lines changed

5 files changed

+105
-39
lines changed

Cargo.lock

Lines changed: 99 additions & 35 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

axum/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,7 @@ serde_path_to_error = { version = "0.1.8", optional = true }
120120
serde_urlencoded = { version = "0.7", optional = true }
121121
sha1 = { version = "0.10", optional = true }
122122
tokio = { package = "tokio", version = "1.44", features = ["time"], optional = true }
123-
tokio-tungstenite = { version = "0.26.0", optional = true }
123+
tokio-tungstenite = { version = "0.27.0", optional = true }
124124
tracing = { version = "0.1", default-features = false, optional = true }
125125

126126
[dependencies.tower-http]
@@ -171,7 +171,7 @@ serde_json = { version = "1.0", features = ["raw_value"] }
171171
time = { version = "0.3", features = ["serde-human-readable"] }
172172
tokio = { package = "tokio", version = "1.44.2", features = ["macros", "rt", "rt-multi-thread", "net", "test-util"] }
173173
tokio-stream = "0.1"
174-
tokio-tungstenite = "0.26.0"
174+
tokio-tungstenite = "0.27.0"
175175
tracing = "0.1"
176176
tracing-subscriber = { version = "0.3", features = ["json"] }
177177
uuid = { version = "1.0", features = ["serde", "v4"] }

deny.toml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,8 @@ skip-tree = [
3838
{ name = "tower" },
3939
# tower hasn't upgraded to 1.0 yet
4040
{ name = "sync_wrapper" },
41+
# pulled in by quickcheck and cookie
42+
{ name = "rand" },
4143
]
4244

4345
[sources]

examples/testing-websockets/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,4 +9,4 @@ axum = { path = "../../axum", features = ["ws"] }
99
futures-channel = "0.3"
1010
futures-util = { version = "0.3", default-features = false, features = ["sink", "std"] }
1111
tokio = { version = "1.0", features = ["full"] }
12-
tokio-tungstenite = "0.26"
12+
tokio-tungstenite = "0.27"

0 commit comments

Comments
 (0)