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

View File

@ -158,7 +158,7 @@ features = ["bundled", "blob"]
[dev-dependencies] [dev-dependencies]
pretty_assertions = "0.6.1" 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] [build-dependencies]
toml = "0.5.5" toml = "0.5.5"

View File

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