mirror of
https://github.com/nushell/nushell
synced 2024-11-10 15:14:14 +00:00
Reduce dev-deps by narrowing rstest
features (#6215)
`rstest = 0.12` added support for asynchronous timeouts during testing thus requiring a larger set of dependencies. Since `rstest = 0.14` this can be disabled if not used. Should keep build times for local or CI tests in check.
This commit is contained in:
parent
ebf845f431
commit
87823b0cb5
4 changed files with 3 additions and 11 deletions
8
Cargo.lock
generated
8
Cargo.lock
generated
|
@ -1329,12 +1329,6 @@ version = "0.3.21"
|
|||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "57c66a976bf5909d801bbef33416c41372779507e7a6b3a5e25e4749c58f776a"
|
||||
|
||||
[[package]]
|
||||
name = "futures-timer"
|
||||
version = "3.0.2"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "e64b03909df88034c26dc1547e8970b91f98bdb65165d6a4e9110d94263dbb2c"
|
||||
|
||||
[[package]]
|
||||
name = "futures-util"
|
||||
version = "0.3.21"
|
||||
|
@ -4021,8 +4015,6 @@ version = "0.15.0"
|
|||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "e9c9dc66cc29792b663ffb5269be669f1613664e69ad56441fdb895c2347b930"
|
||||
dependencies = [
|
||||
"futures",
|
||||
"futures-timer",
|
||||
"rstest_macros",
|
||||
"rustc_version 0.4.0",
|
||||
]
|
||||
|
|
|
@ -70,7 +70,7 @@ assert_cmd = "2.0.2"
|
|||
pretty_assertions = "1.0.0"
|
||||
serial_test = "0.8.0"
|
||||
hamcrest2 = "0.3.0"
|
||||
rstest = "0.15.0"
|
||||
rstest = {version = "0.15.0", default-features = false}
|
||||
itertools = "0.10.3"
|
||||
|
||||
[target.'cfg(windows)'.build-dependencies]
|
||||
|
|
|
@ -9,7 +9,7 @@ version = "0.66.3"
|
|||
[dev-dependencies]
|
||||
nu-test-support = { path="../nu-test-support", version = "0.66.3" }
|
||||
nu-command = { path = "../nu-command", version = "0.66.3" }
|
||||
rstest = "0.15.0"
|
||||
rstest = {version = "0.15.0", default-features = false}
|
||||
|
||||
[dependencies]
|
||||
nu-engine = { path = "../nu-engine", version = "0.66.3" }
|
||||
|
|
|
@ -134,4 +134,4 @@ hamcrest2 = "0.3.0"
|
|||
dirs-next = "2.0.0"
|
||||
quickcheck = "1.0.3"
|
||||
quickcheck_macros = "1.0.0"
|
||||
rstest = "0.15.0"
|
||||
rstest = {version = "0.15.0", default-features = false}
|
||||
|
|
Loading…
Reference in a new issue