summaryrefslogtreecommitdiff
path: root/runtime/Cargo.toml
diff options
context:
space:
mode:
authorLuca Casonato <lucacasonato@yahoo.com>2021-01-06 16:57:28 +0100
committerGitHub <noreply@github.com>2021-01-06 16:57:28 +0100
commit2e18fcebcc2ee931ee952ac2fe2175d6ec7acf69 (patch)
tree352e53d98cd46604e7661ba26df51dc9c0498b2a /runtime/Cargo.toml
parent1959aca2a978642b73ea815b9b89dd3219830cef (diff)
refactor: move WebSocket API to an op_crate (#9026)
Diffstat (limited to 'runtime/Cargo.toml')
-rw-r--r--runtime/Cargo.toml3
1 files changed, 2 insertions, 1 deletions
diff --git a/runtime/Cargo.toml b/runtime/Cargo.toml
index 8632019b6..f641dcb42 100644
--- a/runtime/Cargo.toml
+++ b/runtime/Cargo.toml
@@ -22,6 +22,7 @@ deno_core = { path = "../core", version = "0.75.0" }
deno_crypto = { path = "../op_crates/crypto", version = "0.9.0" }
deno_fetch = { path = "../op_crates/fetch", version = "0.18.0" }
deno_web = { path = "../op_crates/web", version = "0.26.0" }
+deno_websocket = { path = "../op_crates/websocket", version = "0.1.0" }
[target.'cfg(windows)'.build-dependencies]
winres = "0.1.11"
@@ -32,6 +33,7 @@ deno_core = { path = "../core", version = "0.75.0" }
deno_crypto = { path = "../op_crates/crypto", version = "0.9.0" }
deno_fetch = { path = "../op_crates/fetch", version = "0.18.0" }
deno_web = { path = "../op_crates/web", version = "0.26.0" }
+deno_websocket = { path = "../op_crates/websocket", version = "0.1.0" }
atty = "0.2.14"
dlopen = "0.1.8"
@@ -55,7 +57,6 @@ sys-info = "0.7.0"
termcolor = "1.1.0"
tokio = { version = "0.2.22", features = ["full"] }
tokio-rustls = "0.14.1"
-tokio-tungstenite = "0.11.0"
uuid = { version = "0.8.1", features = ["v4"] }
hyper = "0.13.9"
webpki = "0.21.3"