Rename test-support to nu-test-support

This commit is contained in:
Jonathan Turner 2019-12-18 07:41:47 +13:00
parent f52235b1c1
commit 08571392e6
7 changed files with 14 additions and 14 deletions

24
Cargo.lock generated
View File

@ -1957,6 +1957,7 @@ dependencies = [
"nu-parser",
"nu-protocol",
"nu-source",
"nu-test-support",
"nu-value-ext",
"nu_plugin_average",
"nu_plugin_binaryview",
@ -2000,7 +2001,6 @@ dependencies = [
"tempfile",
"term",
"termcolor",
"test-support",
"textwrap",
"toml 0.5.5",
"trash",
@ -2129,6 +2129,17 @@ dependencies = [
"termcolor",
]
[[package]]
name = "nu-test-support"
version = "0.7.0"
dependencies = [
"app_dirs",
"dunce",
"getset",
"glob",
"tempfile",
]
[[package]]
name = "nu-value-ext"
version = "0.7.0"
@ -3409,17 +3420,6 @@ dependencies = [
"wincolor",
]
[[package]]
name = "test-support"
version = "0.7.0"
dependencies = [
"app_dirs",
"dunce",
"getset",
"glob",
"tempfile",
]
[[package]]
name = "textwrap"
version = "0.11.0"

View File

@ -158,7 +158,7 @@ features = ["bundled", "blob"]
[dev-dependencies]
pretty_assertions = "0.6.1"
test-support = { version = "0.7.0", path = "./crates/test-support" }
nu-test-support = { version = "0.7.0", path = "./crates/nu-test-support" }
[build-dependencies]
toml = "0.5.5"

View File

@ -1,5 +1,5 @@
[package]
name = "test-support"
name = "nu-test-support"
version = "0.7.0"
authors = ["Yehuda Katz <wycats@gmail.com>", "Jonathan Turner <jonathan.d.turner@gmail.com>", "Andrés N. Robalino <andres@androbtech.com>"]
edition = "2018"