Skip to content

Commit

Permalink
Support a range of tungstenite version (#20)
Browse files Browse the repository at this point in the history
  • Loading branch information
emilk authored Sep 29, 2023
1 parent af208bc commit 84de864
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions ewebsock/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -47,8 +47,8 @@ futures-util = { version = "0.3", default-features = false, features = [
"std",
], optional = true }
tokio = { version = "1.16", features = ["rt", "sync"], optional = true }
tokio-tungstenite = { version = "0.20", optional = true }
tungstenite = { version = "0.20", optional = true }
tokio-tungstenite = { version = ">=0.17, <=0.20", optional = true }
tungstenite = { version = ">=0.17, <=0.20", optional = true }

# web:
[target.'cfg(target_arch = "wasm32")'.dependencies]
Expand Down

0 comments on commit 84de864

Please sign in to comment.