diff options
Diffstat (limited to 'ext')
-rw-r--r-- | ext/fetch/Cargo.toml | 2 | ||||
-rw-r--r-- | ext/net/Cargo.toml | 2 | ||||
-rw-r--r-- | ext/url/Cargo.toml | 2 | ||||
-rw-r--r-- | ext/web/Cargo.toml | 3 |
4 files changed, 0 insertions, 9 deletions
diff --git a/ext/fetch/Cargo.toml b/ext/fetch/Cargo.toml index b4797d76c..0b41b56c3 100644 --- a/ext/fetch/Cargo.toml +++ b/ext/fetch/Cargo.toml @@ -18,9 +18,7 @@ bytes = "1.1.0" data-url = "0.1.0" deno_core = { version = "0.99.0", path = "../../core" } deno_tls = { version = "0.4.0", path = "../tls" } -deno_web = { version = "0.48.0", path = "../web" } http = "0.2.4" -lazy_static = "1.4.0" reqwest = { version = "0.11.4", default-features = false, features = ["rustls-tls", "stream", "gzip", "brotli"] } serde = { version = "1.0.129", features = ["derive"] } tokio = { version = "1.10.1", features = ["full"] } diff --git a/ext/net/Cargo.toml b/ext/net/Cargo.toml index 9cf1036dc..51700db4d 100644 --- a/ext/net/Cargo.toml +++ b/ext/net/Cargo.toml @@ -16,8 +16,6 @@ path = "lib.rs" [dependencies] deno_core = { version = "0.99.0", path = "../../core" } deno_tls = { version = "0.4.0", path = "../tls" } - -lazy_static = "1.4.0" log = "0.4.14" serde = { version = "1.0.129", features = ["derive"] } tokio = { version = "1.10.1", features = ["full"] } diff --git a/ext/url/Cargo.toml b/ext/url/Cargo.toml index 5d2cb136c..c35609c7e 100644 --- a/ext/url/Cargo.toml +++ b/ext/url/Cargo.toml @@ -15,8 +15,6 @@ path = "lib.rs" [dependencies] deno_core = { version = "0.99.0", path = "../../core" } -idna = "0.2.3" -percent-encoding = "2.1.0" serde = { version = "1.0.129", features = ["derive"] } serde_repr = "0.1.7" urlpattern = "0.1.2" diff --git a/ext/web/Cargo.toml b/ext/web/Cargo.toml index 93b9eaa25..7858fa843 100644 --- a/ext/web/Cargo.toml +++ b/ext/web/Cargo.toml @@ -21,6 +21,3 @@ encoding_rs = "0.8.28" serde = "1.0.129" tokio = { version = "1.10.1", features = ["full"] } uuid = { version = "0.8.2", features = ["v4", "serde"] } - -[dev-dependencies] -futures = "0.3.15" |