From 13e3acf71dd8443d8d158087d8c0a0cb72167f9a Mon Sep 17 00:00:00 2001 From: Leo Kettmeir Date: Tue, 22 Nov 2022 21:07:35 +0100 Subject: chore: workspace inheritance (#16343) --- ext/flash/Cargo.toml | 30 +++++++++++++++--------------- 1 file changed, 15 insertions(+), 15 deletions(-) (limited to 'ext/flash') diff --git a/ext/flash/Cargo.toml b/ext/flash/Cargo.toml index 72355f730..9ef179488 100644 --- a/ext/flash/Cargo.toml +++ b/ext/flash/Cargo.toml @@ -3,28 +3,28 @@ [package] name = "deno_flash" version = "0.14.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 = "Fast HTTP/1 server implementation for Deno" [lib] path = "lib.rs" [dependencies] -deno_core = { path = "../../core", version = "0.160.0" } -deno_tls = { version = "0.65.0", path = "../tls" } +deno_core.workspace = true +deno_tls.workspace = true # For HTTP/2 and websocket upgrades -deno_websocket = { version = "0.83.0", path = "../websocket" } -http = "0.2.6" +deno_websocket.workspace = true +http.workspace = true httparse = "1.8" -libc = "0.2" -log = "0.4.17" +libc.workspace = true +log.workspace = true mio = { version = "0.8.1", features = ["os-poll", "net"] } -rustls = { version = "0.20" } -rustls-pemfile = "1.0" -serde = { version = "1.0.136", features = ["derive"] } -socket2 = "0.4.7" -tokio = { version = "1.21", features = ["full"] } +rustls.workspace = true +rustls-pemfile.workspace = true +serde.workspace = true +socket2.workspace = true +tokio.workspace = true -- cgit v1.2.3