Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Removal of unused deps #12106

Merged
merged 1 commit into from Sep 17, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
52 changes: 0 additions & 52 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

10 changes: 0 additions & 10 deletions cli/Cargo.toml
Expand Up @@ -25,14 +25,10 @@ deno_console = { version = "0.17.0", path = "../ext/console" }
deno_core = { version = "0.99.0", path = "../core" }
deno_crypto = { version = "0.31.0", path = "../ext/crypto" }
deno_fetch = { version = "0.40.0", path = "../ext/fetch" }
deno_ffi = { version = "0.4.0", path = "../ext/ffi" }
deno_http = { version = "0.9.0", path = "../ext/http" }
deno_net = { version = "0.8.0", path = "../ext/net" }
deno_timers = { version = "0.15.0", path = "../ext/timers" }
deno_url = { version = "0.17.0", path = "../ext/url" }
deno_web = { version = "0.48.0", path = "../ext/web" }
deno_webgpu = { version = "0.18.0", path = "../ext/webgpu" }
deno_webidl = { version = "0.17.0", path = "../ext/webidl" }
deno_websocket = { version = "0.22.0", path = "../ext/websocket" }
deno_webstorage = { version = "0.12.0", path = "../ext/webstorage" }
regex = "1.5.4"
Expand All @@ -53,7 +49,6 @@ deno_tls = { version = "0.4.0", path = "../ext/tls" }

atty = "0.2.14"
base64 = "0.13.0"
byteorder = "1.4.3"
clap = "2.33.3"
data-url = "0.1.0"
dissimilar = "1.0.2"
Expand All @@ -63,11 +58,8 @@ dprint-plugin-typescript = "0.55.0"
encoding_rs = "0.8.28"
env_logger = "0.8.4"
fancy-regex = "0.7.1"
filetime = "0.2.14"
http = "0.2.4"
import_map = "0.3.0"
# TODO(lucacasonato): unlock when https://github.com/tkaitchuck/aHash/issues/95 is resolved
indexmap = { version = "=1.6.2", features = ["serde"] }
jsonc-parser = { version = "0.17.0", features = ["serde"] }
lazy_static = "1.4.0"
libc = "0.2.101"
Expand All @@ -90,7 +82,6 @@ sourcemap = "6.0.1"
tempfile = "3.2.0"
text-size = "1.1.0"
tokio = { version = "1.10.1", features = ["full"] }
tokio-rustls = "0.22.0"
uuid = { version = "0.8.2", features = ["v4", "serde"] }
walkdir = "2.3.2"

Expand All @@ -105,7 +96,6 @@ flaky_test = "0.1.0"
os_pipe = "0.9.2"
pretty_assertions = "0.7.2"
test_util = { path = "../test_util" }
tower-test = "0.4.0"
trust-dns-client = "0.20.3"
trust-dns-server = "0.20.3"

Expand Down
1 change: 0 additions & 1 deletion core/Cargo.toml
Expand Up @@ -18,7 +18,6 @@ futures = "0.3.16"
# TODO(lucacasonato): unlock when https://github.com/tkaitchuck/aHash/issues/95 is resolved
indexmap = "=1.6.2"
lazy_static = "1.4.0"
libc = "0.2.101"
log = "0.4.14"
parking_lot = "0.11.1"
pin-project = "1.0.7"
Expand Down
2 changes: 0 additions & 2 deletions ext/fetch/Cargo.toml
Expand Up @@ -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"] }
Expand Down
2 changes: 0 additions & 2 deletions ext/net/Cargo.toml
Expand Up @@ -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"] }
Expand Down
2 changes: 0 additions & 2 deletions ext/url/Cargo.toml
Expand Up @@ -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"
Expand Down
3 changes: 0 additions & 3 deletions ext/web/Cargo.toml
Expand Up @@ -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"
3 changes: 0 additions & 3 deletions runtime/Cargo.toml
Expand Up @@ -68,13 +68,10 @@ filetime = "0.2.15"
fs3 = "0.5.0"
http = "0.2.4"
hyper = { version = "0.14.12", features = ["server", "stream", "http1", "http2", "runtime"] }
# TODO(lucacasonato): unlock when https://github.com/tkaitchuck/aHash/issues/95 is resolved
indexmap = "=1.6.2"
lazy_static = "1.4.0"
libc = "0.2.101"
log = "0.4.14"
notify = "=5.0.0-pre.12"
percent-encoding = "2.1.0"
regex = "1.5.4"
ring = "0.16.20"
serde = { version = "1.0.129", features = ["derive"] }
Expand Down
1 change: 0 additions & 1 deletion test_util/Cargo.toml
Expand Up @@ -15,7 +15,6 @@ path = "src/test_server.rs"
anyhow = "1.0.43"
async-stream = "0.3.2"
base64 = "0.13.0"
bytes = "1.1.0"
futures = "0.3.16"
hyper = { version = "0.14.12", features = ["server", "http1", "runtime"] }
lazy_static = "1.4.0"
Expand Down