mirror of
https://github.com/martinvonz/jj.git
synced 2025-01-18 18:27:38 +00:00
cargo: move some test deps to [dev-dependencies]
This commit is contained in:
parent
d42c71f48d
commit
6e30bd76f9
1 changed files with 4 additions and 5 deletions
|
@ -34,7 +34,6 @@ harness = false
|
||||||
members = ["lib"]
|
members = ["lib"]
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
assert_cmd = "2.0.4"
|
|
||||||
atty = "0.2.14"
|
atty = "0.2.14"
|
||||||
chrono = "0.4.19"
|
chrono = "0.4.19"
|
||||||
clap = { version = "3.1.12", features = ["derive"] }
|
clap = { version = "3.1.12", features = ["derive"] }
|
||||||
|
@ -46,13 +45,11 @@ dirs = "4.0.0"
|
||||||
git2 = "0.14.2"
|
git2 = "0.14.2"
|
||||||
hex = "0.4.3"
|
hex = "0.4.3"
|
||||||
indoc = "1.0.4"
|
indoc = "1.0.4"
|
||||||
insta = "1.14.0"
|
|
||||||
itertools = "0.10.3"
|
itertools = "0.10.3"
|
||||||
jujutsu-lib = { version = "=0.4.0", path = "lib"}
|
jujutsu-lib = { version = "=0.4.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"
|
||||||
predicates = "2.1.1"
|
|
||||||
rand = "0.8.5"
|
rand = "0.8.5"
|
||||||
regex = "1.5.5"
|
regex = "1.5.5"
|
||||||
tempfile = "3.3.0"
|
tempfile = "3.3.0"
|
||||||
|
@ -60,11 +57,13 @@ textwrap = "0.15.0"
|
||||||
thiserror = "1.0.30"
|
thiserror = "1.0.30"
|
||||||
|
|
||||||
[dev-dependencies]
|
[dev-dependencies]
|
||||||
test-case = "2.0.2"
|
assert_cmd = "2.0.4"
|
||||||
regex = "1.5.5"
|
|
||||||
criterion = "0.3.5"
|
criterion = "0.3.5"
|
||||||
criterion_bencher_compat = "0.3.4"
|
criterion_bencher_compat = "0.3.4"
|
||||||
|
insta = "1.14.0"
|
||||||
|
regex = "1.5.5"
|
||||||
predicates = "2.1.1"
|
predicates = "2.1.1"
|
||||||
|
test-case = "2.0.2"
|
||||||
|
|
||||||
[features]
|
[features]
|
||||||
default = ["vendored-openssl"]
|
default = ["vendored-openssl"]
|
||||||
|
|
Loading…
Reference in a new issue