Remove unused deps or move to devdeps (#7537)

# Description

General tree shaking through `cargo +nightly udeps` and moving mentions
of `nu-test-support` to the dev deps.

Also since #7488 no separate import of `nu-path` necessary

cc @webbedspace
This commit is contained in:
Stefan Holderbach
2022-12-20 00:53:17 +01:00
committed by GitHub
parent 58cea7e8b4
commit 91df6c236f
4 changed files with 6 additions and 10 deletions

View File

@ -16,7 +16,7 @@ nu-protocol = { path = "../nu-protocol", version = "0.72.2" }
nu-ansi-term = "0.46.0"
nu-utils = { path = "../nu-utils", version = "0.72.2" }
nu-engine = { path = "../nu-engine", version = "0.72.2" }
nu-test-support = { path="../nu-test-support", version = "0.72.2" }
# nu-path is used only for test support
nu-path = { path="../nu-path", version = "0.72.2" }
nu-json = { path="../nu-json", version = "0.72.2" }
[dev-dependencies]
nu-test-support = { path="../nu-test-support", version = "0.72.2" }