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:
Stefan Holderbach
2022-08-03 11:55:58 +02:00
committed by GitHub
parent ebf845f431
commit 87823b0cb5
4 changed files with 3 additions and 11 deletions

View File

@ -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" }

View File

@ -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}