diff options
author | Akshat Agarwal <humancalico@disroot.org> | 2021-02-28 18:24:03 +0530 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-02-28 13:54:03 +0100 |
commit | d88d8b75d0e44a0e667b4e68ee6c1fa17a431f50 (patch) | |
tree | 901b353f6b7532beb6e0af91b68ab857cd6b3ce7 | |
parent | 4b56537ea9d5c3e5f60ca817ed00c55dcbb2131c (diff) |
chore(runtime): removed unused dependencies (#9622)
This PR removes the following unused dependencies from the runtime
crate:
- env_logger
- rustyline-derive
- shell-escape
-rw-r--r-- | Cargo.lock | 3 | ||||
-rw-r--r-- | runtime/Cargo.toml | 3 |
2 files changed, 0 insertions, 6 deletions
diff --git a/Cargo.lock b/Cargo.lock index 0556292b3..221366951 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -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", diff --git a/runtime/Cargo.toml b/runtime/Cargo.toml index 9553c1b04..091e0340d 100644 --- a/runtime/Cargo.toml +++ b/runtime/Cargo.toml @@ -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"] } |