mirror of
https://github.com/denoland/deno.git
synced 2025-03-03 17:34:47 -05:00
chore(runtime): removed unused dependencies (#9622)
This PR removes the following unused dependencies from the runtime crate: - env_logger - rustyline-derive - shell-escape
This commit is contained in:
parent
4b56537ea9
commit
d88d8b75d0
2 changed files with 0 additions and 6 deletions
3
Cargo.lock
generated
3
Cargo.lock
generated
|
@ -541,7 +541,6 @@ dependencies = [
|
||||||
"deno_websocket",
|
"deno_websocket",
|
||||||
"dlopen",
|
"dlopen",
|
||||||
"encoding_rs",
|
"encoding_rs",
|
||||||
"env_logger",
|
|
||||||
"filetime",
|
"filetime",
|
||||||
"fwdansi",
|
"fwdansi",
|
||||||
"http",
|
"http",
|
||||||
|
@ -556,9 +555,7 @@ dependencies = [
|
||||||
"regex",
|
"regex",
|
||||||
"ring",
|
"ring",
|
||||||
"rustyline",
|
"rustyline",
|
||||||
"rustyline-derive",
|
|
||||||
"serde",
|
"serde",
|
||||||
"shell-escape",
|
|
||||||
"sys-info",
|
"sys-info",
|
||||||
"termcolor",
|
"termcolor",
|
||||||
"test_util",
|
"test_util",
|
||||||
|
|
|
@ -38,7 +38,6 @@ deno_websocket = { path = "../op_crates/websocket", version = "0.5.0" }
|
||||||
atty = "0.2.14"
|
atty = "0.2.14"
|
||||||
dlopen = "0.1.8"
|
dlopen = "0.1.8"
|
||||||
encoding_rs = "0.8.28"
|
encoding_rs = "0.8.28"
|
||||||
env_logger = "0.8.2"
|
|
||||||
filetime = "0.2.14"
|
filetime = "0.2.14"
|
||||||
http = "0.2.3"
|
http = "0.2.3"
|
||||||
hyper = { version = "0.14.4", features = ["server"] }
|
hyper = { version = "0.14.4", features = ["server"] }
|
||||||
|
@ -51,9 +50,7 @@ percent-encoding = "2.1.0"
|
||||||
regex = "1.4.3"
|
regex = "1.4.3"
|
||||||
ring = "0.16.20"
|
ring = "0.16.20"
|
||||||
rustyline = { version = "7.1.0", default-features = false }
|
rustyline = { version = "7.1.0", default-features = false }
|
||||||
rustyline-derive = "0.4.0"
|
|
||||||
serde = { version = "1.0.123", features = ["derive"] }
|
serde = { version = "1.0.123", features = ["derive"] }
|
||||||
shell-escape = "0.1.5"
|
|
||||||
sys-info = "0.8.0"
|
sys-info = "0.8.0"
|
||||||
termcolor = "1.1.2"
|
termcolor = "1.1.2"
|
||||||
tokio = { version = "1.2.0", features = ["full"] }
|
tokio = { version = "1.2.0", features = ["full"] }
|
||||||
|
|
Loading…
Add table
Reference in a new issue