mirror of
https://github.com/nushell/nushell.git
synced 2025-06-30 14:40:06 +02: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:
committed by
GitHub
parent
ebf845f431
commit
87823b0cb5
@ -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}
|
||||
|
Reference in New Issue
Block a user