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/http | |
parent | 14904f6a2cac6b288a893add3e129c2668ea3a5a (diff) |
chore: workspace inheritance (#16343)
Diffstat (limited to 'ext/http')
-rw-r--r-- | ext/http/Cargo.toml | 34 |
1 files changed, 17 insertions, 17 deletions
diff --git a/ext/http/Cargo.toml b/ext/http/Cargo.toml index 243a75a2f..6f66b8474 100644 --- a/ext/http/Cargo.toml +++ b/ext/http/Cargo.toml @@ -3,11 +3,11 @@ [package] name = "deno_http" version = "0.72.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 = "HTTP server implementation for Deno" [lib] @@ -19,22 +19,22 @@ harness = false [dependencies] async-compression = { version = "0.3.12", features = ["tokio", "brotli", "gzip"] } -base64 = "0.13.0" +base64.workspace = true brotli = "3.3.4" -bytes = "1" -cache_control = "0.2.0" -deno_core = { version = "0.160.0", path = "../../core" } -deno_websocket = { version = "0.83.0", path = "../websocket" } -flate2 = "1.0.23" +bytes.workspace = true +cache_control.workspace = true +deno_core.workspace = true +deno_websocket.workspace = true +flate2.workspace = true fly-accept-encoding = "0.2.0" -hyper = { version = "0.14.18", features = ["server", "stream", "http1", "http2", "runtime"] } +hyper = { workspace = true, features = ["server", "stream", "http1", "http2", "runtime"] } mime = "0.3.16" -percent-encoding = "2.2.0" +percent-encoding.workspace = true phf = { version = "0.10", features = ["macros"] } -ring = "0.16.20" -serde = { version = "1.0.136", features = ["derive"] } -tokio = { version = "1.21", features = ["full"] } -tokio-util = { version = "0.7", features = ["io"] } +ring.workspace = true +serde.workspace = true +tokio.workspace = true +tokio-util = { workspace = true, features = ["io"] } [dev-dependencies] -bencher = "0.1" +bencher.workspace = true |