diff options
Diffstat (limited to 'ext/websocket')
-rw-r--r-- | ext/websocket/Cargo.toml | 24 |
1 files changed, 12 insertions, 12 deletions
diff --git a/ext/websocket/Cargo.toml b/ext/websocket/Cargo.toml index 91823de7a..876b8f6ea 100644 --- a/ext/websocket/Cargo.toml +++ b/ext/websocket/Cargo.toml @@ -3,22 +3,22 @@ [package] name = "deno_websocket" version = "0.83.0" -authors = ["the Deno authors"] -edition = "2021" -license = "MIT" +authors.workspace = true +edition.workspace = true +license.workspace = true readme = "README.md" -repository = "https://github.com/denoland/deno" +repository.workspace = true description = "Implementation of WebSocket API for Deno" [lib] path = "lib.rs" [dependencies] -deno_core = { version = "0.160.0", path = "../../core" } -deno_tls = { version = "0.65.0", path = "../tls" } -http = "0.2.6" -hyper = { version = "0.14.18" } -serde = { version = "1.0.136", features = ["derive"] } -tokio = { version = "1.21", features = ["full"] } -tokio-rustls = "0.23.3" -tokio-tungstenite = { version = "0.16.1", features = ["rustls-tls-webpki-roots"] } +deno_core.workspace = true +deno_tls.workspace = true +http.workspace = true +hyper.workspace = true +serde.workspace = true +tokio.workspace = true +tokio-rustls.workspace = true +tokio-tungstenite = { workspace = true, features = ["rustls-tls-webpki-roots"] } |