summaryrefslogtreecommitdiff
path: root/cli/Cargo.toml
diff options
context:
space:
mode:
authorcrowlKats <13135287+crowlKats@users.noreply.github.com>2020-09-05 16:39:25 +0200
committerGitHub <noreply@github.com>2020-09-05 10:39:25 -0400
commit8c880d32612c562795d8cd539c662a0cfdcbb8c8 (patch)
tree1d4df2ffb263860d0cd227cbe5dce745a5e3e2a7 /cli/Cargo.toml
parent34e98fa59cd70f7ce64e587bef41fac536a3076b (diff)
feat: Implement WebSocket API (#7051)
Diffstat (limited to 'cli/Cargo.toml')
-rw-r--r--cli/Cargo.toml4
1 files changed, 2 insertions, 2 deletions
diff --git a/cli/Cargo.toml b/cli/Cargo.toml
index cd2ef0a84..f67158310 100644
--- a/cli/Cargo.toml
+++ b/cli/Cargo.toml
@@ -69,6 +69,8 @@ tempfile = "3.1.0"
termcolor = "1.1.0"
tokio = { version = "0.2.22", features = ["full"] }
tokio-rustls = "0.14.0"
+# Keep in-sync with warp.
+tokio-tungstenite = { version = "0.11.0" }
url = "2.1.1"
webpki = "0.21.3"
webpki-roots = "0.19.0"
@@ -89,8 +91,6 @@ nix = "0.17.0"
# Used in benchmark
chrono = "0.4"
os_pipe = "0.9.2"
-# Used for testing inspector. Keep in-sync with warp.
-tokio-tungstenite = { version = "0.11.0", features = ["connect"] }
test_util = { path = "../test_util" }
[package.metadata.winres]