Skip to content

Commit

Permalink
Update websocket-util dependency 0.12
Browse files Browse the repository at this point in the history
This change updates the websocket-util dependency we rely on to version
0.12. The main change over the early used 0.11 is that its
tokio-tungstenite dependency, to which we are exposed, is updated from
0.18 to 0.20. To that end, we need to update our tokio-tungstenite
dependency in lockstep.
  • Loading branch information
d-e-s-o committed Jan 9, 2024
1 parent 01ca51b commit 4c7987c
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@ Unreleased
- This variant is now used to signal a multitude of conditions,
including certain order submission issues
- Bumped minimum supported Rust version to `1.63`
- Bumped `websocket-util` dependency to `0.12`
- Bumped `tokio-tungstenite` dependency to `0.20`


0.27.2
Expand Down
6 changes: 3 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -44,18 +44,18 @@ thiserror = "1.0.30"
tokio = {version = "1.0", default-features = false, features = ["net"]}
tracing = {version = "0.1", default-features = false, features = ["attributes", "std"]}
tracing-futures = {version = "0.2", default-features = false, features = ["std-future"]}
tungstenite = {package = "tokio-tungstenite", version = "0.18", features = ["connect", "native-tls"]}
tungstenite = {package = "tokio-tungstenite", version = "0.20", features = ["connect", "native-tls"]}
url = "2.0"
uuid = {version = "1.0", default-features = false, features = ["serde"]}
websocket-util = "0.11.0"
websocket-util = "0.12.0"

[dev-dependencies]
serial_test = {version = "2.0.0", default-features = false}
test-log = {version = "0.2.8", default-features = false, features = ["trace"]}
tokio = {version = "1.0", default-features = false, features = ["rt-multi-thread", "macros"]}
tracing-subscriber = {version = "0.3", default-features = false, features = ["ansi", "env-filter", "fmt"]}
uuid = {version = "1.0", default-features = false, features = ["v4"]}
websocket-util = {version = "0.11.0", features = ["test"]}
websocket-util = {version = "0.12.0", features = ["test"]}

# A set of unused dependencies that we require to force correct minimum versions
# of transitive dependencies, for cases where our dependencies have incorrect
Expand Down

0 comments on commit 4c7987c

Please sign in to comment.