diff options
author | Bartek IwaĆczuk <biwanczuk@gmail.com> | 2021-01-12 08:50:02 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-01-11 23:50:02 -0800 |
commit | 275a5c65a20529cd4a3d775b8d8c6e9b261c76b1 (patch) | |
tree | 9f861e36e70be809d5586128a24b9f7b4332e09e /op_crates/websocket | |
parent | 36ff7bdf575e0547fabd8957ee778cc4224d5956 (diff) |
upgrade: tokio 1.0 (#8779)
Co-authored-by: Bert Belder <bertbelder@gmail.com>
Diffstat (limited to 'op_crates/websocket')
-rw-r--r-- | op_crates/websocket/Cargo.toml | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/op_crates/websocket/Cargo.toml b/op_crates/websocket/Cargo.toml index c4d9a27ec..1965c6957 100644 --- a/op_crates/websocket/Cargo.toml +++ b/op_crates/websocket/Cargo.toml @@ -15,10 +15,10 @@ path = "lib.rs" [dependencies] deno_core = { version = "0.75.0", path = "../../core" } -http = "0.2.1" -tokio = { version = "0.2.22", features = ["full"] } -tokio-rustls = "0.14.1" -tokio-tungstenite = "0.11.0" +http = "0.2.3" serde = { version = "1.0.116", features = ["derive"] } -webpki = "0.21.3" -webpki-roots = "=0.19.0" # Pinned to v0.19.0 to match 'reqwest'. +tokio = { version = "1.0.1", features = ["full"] } +tokio-rustls = "0.22.0" +tokio-tungstenite = "0.13.0" +webpki = "0.21.4" +webpki-roots = "0.21.0" |