1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-11-21 15:04:11 -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:
Akshat Agarwal 2021-02-28 18:24:03 +05:30 committed by GitHub
parent 4b56537ea9
commit d88d8b75d0
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 0 additions and 6 deletions

3
Cargo.lock generated
View file

@ -541,7 +541,6 @@ dependencies = [
"deno_websocket",
"dlopen",
"encoding_rs",
"env_logger",
"filetime",
"fwdansi",
"http",
@ -556,9 +555,7 @@ dependencies = [
"regex",
"ring",
"rustyline",
"rustyline-derive",
"serde",
"shell-escape",
"sys-info",
"termcolor",
"test_util",

View file

@ -38,7 +38,6 @@ deno_websocket = { path = "../op_crates/websocket", version = "0.5.0" }
atty = "0.2.14"
dlopen = "0.1.8"
encoding_rs = "0.8.28"
env_logger = "0.8.2"
filetime = "0.2.14"
http = "0.2.3"
hyper = { version = "0.14.4", features = ["server"] }
@ -51,9 +50,7 @@ percent-encoding = "2.1.0"
regex = "1.4.3"
ring = "0.16.20"
rustyline = { version = "7.1.0", default-features = false }
rustyline-derive = "0.4.0"
serde = { version = "1.0.123", features = ["derive"] }
shell-escape = "0.1.5"
sys-info = "0.8.0"
termcolor = "1.1.2"
tokio = { version = "1.2.0", features = ["full"] }