diff options
author | Leo Kettmeir <crowlkats@toaxl.com> | 2022-11-22 21:07:35 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-11-22 21:07:35 +0100 |
commit | 13e3acf71dd8443d8d158087d8c0a0cb72167f9a (patch) | |
tree | 7455c069643f10bc9de5d6c8993defddeda378fd /ext/websocket | |
parent | 14904f6a2cac6b288a893add3e129c2668ea3a5a (diff) |
chore: workspace inheritance (#16343)
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"] } |