summaryrefslogtreecommitdiff
path: root/extensions/websocket
diff options
context:
space:
mode:
Diffstat (limited to 'extensions/websocket')
-rw-r--r--extensions/websocket/Cargo.toml6
1 files changed, 3 insertions, 3 deletions
diff --git a/extensions/websocket/Cargo.toml b/extensions/websocket/Cargo.toml
index 818f8135a..3e1705950 100644
--- a/extensions/websocket/Cargo.toml
+++ b/extensions/websocket/Cargo.toml
@@ -3,12 +3,12 @@
[package]
name = "deno_websocket"
version = "0.18.0"
-edition = "2018"
-description = "Implementation of WebSocket API for Deno"
authors = ["the Deno authors"]
+edition = "2018"
license = "MIT"
readme = "README.md"
repository = "https://github.com/denoland/deno"
+description = "Implementation of WebSocket API for Deno"
[lib]
path = "lib.rs"
@@ -16,10 +16,10 @@ path = "lib.rs"
[dependencies]
deno_core = { version = "0.95.0", path = "../../core" }
http = "0.2.4"
+hyper = { version = "0.14.9" }
serde = { version = "1.0.126", features = ["derive"] }
tokio = { version = "1.8.1", features = ["full"] }
tokio-rustls = "0.22.0"
tokio-tungstenite = { version = "0.14.0", features = ["rustls-tls"] }
-hyper = { version = "0.14.9" }
webpki = "0.21.4"
webpki-roots = "0.21.1"