cargo: remove unused dependencies from CLI crate

This commit is contained in:
Martin von Zweigbergk 2022-02-09 22:11:20 -08:00
parent 68710366b4
commit de6e77dcdf
2 changed files with 0 additions and 16 deletions

8
Cargo.lock generated
View file

@ -529,14 +529,11 @@ name = "jujutsu"
version = "0.2.0" version = "0.2.0"
dependencies = [ dependencies = [
"atty", "atty",
"blake2",
"bytes",
"chrono", "chrono",
"clap 3.0.4", "clap 3.0.4",
"clap_complete", "clap_complete",
"config", "config",
"criterion", "criterion",
"dirs",
"git2", "git2",
"hex", "hex",
"indoc", "indoc",
@ -545,17 +542,12 @@ dependencies = [
"maplit", "maplit",
"pest", "pest",
"pest_derive", "pest_derive",
"protobuf",
"protobuf-codegen-pure",
"rand", "rand",
"regex", "regex",
"serde_json",
"tempfile", "tempfile",
"test-case", "test-case",
"textwrap 0.14.2", "textwrap 0.14.2",
"thiserror", "thiserror",
"uuid",
"zstd",
] ]
[[package]] [[package]]

View file

@ -21,14 +21,11 @@ members = ["lib"]
[dependencies] [dependencies]
atty = "0.2.14" atty = "0.2.14"
blake2 = "0.9.2"
bytes = "1.1.0"
chrono = "0.4.19" chrono = "0.4.19"
clap = { version = "3.0.4", features = ["cargo"] } clap = { version = "3.0.4", features = ["cargo"] }
clap_complete = "3.0.2" clap_complete = "3.0.2"
config = "0.11.0" config = "0.11.0"
criterion = "0.3.5" criterion = "0.3.5"
dirs = "4.0.0"
git2 = "0.13.24" git2 = "0.13.24"
hex = "0.4.3" hex = "0.4.3"
indoc = "1.0.3" indoc = "1.0.3"
@ -37,15 +34,10 @@ jujutsu-lib = { version = "=0.2.0", path = "lib"}
maplit = "1.0.2" maplit = "1.0.2"
pest = "2.1.3" pest = "2.1.3"
pest_derive = "2.1.0" pest_derive = "2.1.0"
protobuf = { version = "2.25.2", features = ["with-bytes"] }
protobuf-codegen-pure = "2.25.2"
rand = "0.8.4" rand = "0.8.4"
serde_json = "1.0.72"
tempfile = "3.2.0" tempfile = "3.2.0"
textwrap = "0.14.2" textwrap = "0.14.2"
thiserror = "1.0.30" thiserror = "1.0.30"
uuid = { version = "0.8.2", features = ["v4"] }
zstd = "0.9.0"
[dev-dependencies] [dev-dependencies]
test-case = "1.2.1" test-case = "1.2.1"