Skip to content

Commit

Permalink
Update tokio-tungstenite dependency to 0.20
Browse files Browse the repository at this point in the history
This change updates the tokio-tungstenite dependency we rely on to
version 0.20.
  • Loading branch information
d-e-s-o committed Jan 6, 2024
1 parent 9536f5b commit faa04f3
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ Unreleased
----------
- Removed pong sending functionality from `Wrapper` type
- Bumped minimum supported Rust version to `1.63`
- Bumped `tokio-tungstenite` dependency to `0.19`
- Bumped `tokio-tungstenite` dependency to `0.20`


0.11.2
Expand Down
4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -21,14 +21,14 @@ test = ["tokio-tungstenite/connect"]
futures = {version = "0.3", default-features = false, features = ["async-await", "std"]}
tokio = {version = "1.8", default-features = false, features = ["rt", "time"]}
tracing = {version = "0.1", default-features = false, features = ["std"]}
tokio-tungstenite = {version = "0.19", default-features = false}
tokio-tungstenite = {version = "0.20", default-features = false}

[dev-dependencies]
rand = {version = "0.8", default-features = false, features = ["std", "std_rng"]}
serde = {version = "1.0", features = ["derive"]}
test-log = {version = "0.2.8", default-features = false, features = ["trace"]}
tokio = {version = "1.8", default-features = false, features = ["rt", "macros", "net", "test-util"]}
tokio-tungstenite = {version = "0.19", default-features = false, features = ["connect"]}
tokio-tungstenite = {version = "0.20", default-features = false, features = ["connect"]}
tracing-subscriber = {version = "0.3", default-features = false, features = ["ansi", "env-filter", "fmt", "local-time"]}
url = "2.0"

Expand Down

0 comments on commit faa04f3

Please sign in to comment.