Merge pull request #1089 from jonathandturner/bump

Bump Nu version
This commit is contained in:
Jonathan Turner 2019-12-17 08:54:02 -08:00 committed by GitHub
commit f7f1fba94f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
22 changed files with 128 additions and 128 deletions

42
Cargo.lock generated
View File

@ -1911,7 +1911,7 @@ dependencies = [
[[package]]
name = "nu"
version = "0.6.2"
version = "0.7.0"
dependencies = [
"ansi_term 0.12.1",
"app_dirs",
@ -2013,7 +2013,7 @@ dependencies = [
[[package]]
name = "nu-build"
version = "0.1.0"
version = "0.7.0"
dependencies = [
"lazy_static 1.4.0",
"serde 1.0.103",
@ -2023,7 +2023,7 @@ dependencies = [
[[package]]
name = "nu-errors"
version = "0.1.0"
version = "0.7.0"
dependencies = [
"ansi_term 0.12.1",
"bigdecimal",
@ -2044,14 +2044,14 @@ dependencies = [
[[package]]
name = "nu-macros"
version = "0.1.0"
version = "0.7.0"
dependencies = [
"nu-protocol",
]
[[package]]
name = "nu-parser"
version = "0.1.0"
version = "0.7.0"
dependencies = [
"ansi_term 0.12.1",
"bigdecimal",
@ -2084,7 +2084,7 @@ dependencies = [
[[package]]
name = "nu-protocol"
version = "0.1.0"
version = "0.7.0"
dependencies = [
"ansi_term 0.12.1",
"bigdecimal",
@ -2116,7 +2116,7 @@ dependencies = [
[[package]]
name = "nu-source"
version = "0.1.0"
version = "0.7.0"
dependencies = [
"derive-new",
"getset",
@ -2131,7 +2131,7 @@ dependencies = [
[[package]]
name = "nu-value-ext"
version = "0.1.0"
version = "0.7.0"
dependencies = [
"itertools 0.8.2",
"nu-build",
@ -2144,7 +2144,7 @@ dependencies = [
[[package]]
name = "nu_plugin_average"
version = "0.1.0"
version = "0.7.0"
dependencies = [
"nu-build",
"nu-errors",
@ -2154,7 +2154,7 @@ dependencies = [
[[package]]
name = "nu_plugin_binaryview"
version = "0.1.0"
version = "0.7.0"
dependencies = [
"ansi_term 0.12.1",
"crossterm",
@ -2170,7 +2170,7 @@ dependencies = [
[[package]]
name = "nu_plugin_fetch"
version = "0.1.0"
version = "0.7.0"
dependencies = [
"futures-preview",
"nu-build",
@ -2183,7 +2183,7 @@ dependencies = [
[[package]]
name = "nu_plugin_inc"
version = "0.1.0"
version = "0.7.0"
dependencies = [
"indexmap",
"nu-build",
@ -2196,7 +2196,7 @@ dependencies = [
[[package]]
name = "nu_plugin_match"
version = "0.1.0"
version = "0.7.0"
dependencies = [
"futures-preview",
"nu-build",
@ -2208,7 +2208,7 @@ dependencies = [
[[package]]
name = "nu_plugin_post"
version = "0.1.0"
version = "0.7.0"
dependencies = [
"base64 0.11.0",
"futures-preview",
@ -2224,7 +2224,7 @@ dependencies = [
[[package]]
name = "nu_plugin_ps"
version = "0.1.0"
version = "0.7.0"
dependencies = [
"futures-preview",
"futures-timer",
@ -2239,7 +2239,7 @@ dependencies = [
[[package]]
name = "nu_plugin_str"
version = "0.1.0"
version = "0.7.0"
dependencies = [
"indexmap",
"nu-build",
@ -2253,7 +2253,7 @@ dependencies = [
[[package]]
name = "nu_plugin_sum"
version = "0.1.0"
version = "0.7.0"
dependencies = [
"nu-build",
"nu-errors",
@ -2263,7 +2263,7 @@ dependencies = [
[[package]]
name = "nu_plugin_sys"
version = "0.1.0"
version = "0.7.0"
dependencies = [
"battery",
"futures-preview",
@ -2277,7 +2277,7 @@ dependencies = [
[[package]]
name = "nu_plugin_textview"
version = "0.1.0"
version = "0.7.0"
dependencies = [
"ansi_term 0.12.1",
"crossterm",
@ -2292,7 +2292,7 @@ dependencies = [
[[package]]
name = "nu_plugin_tree"
version = "0.1.0"
version = "0.7.0"
dependencies = [
"derive-new",
"nu-build",
@ -3411,7 +3411,7 @@ dependencies = [
[[package]]
name = "test-support"
version = "0.1.0"
version = "0.7.0"
dependencies = [
"app_dirs",
"dunce",

View File

@ -1,6 +1,6 @@
[package]
name = "nu"
version = "0.6.2"
version = "0.7.0"
authors = ["Yehuda Katz <wycats@gmail.com>", "Jonathan Turner <jonathan.d.turner@gmail.com>", "Andrés N. Robalino <andres@androbtech.com>"]
description = "A shell for the GitHub era"
license = "MIT"
@ -38,24 +38,24 @@ members = [
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
nu-source = { version = "0.1.0", path = "./crates/nu-source" }
nu-protocol = { version = "0.1.0", path = "./crates/nu-protocol" }
nu-errors = { version = "0.1.0", path = "./crates/nu-errors" }
nu-parser = { version = "0.1.0", path = "./crates/nu-parser" }
nu-value-ext = { version = "0.1.0", path = "./crates/nu-value-ext" }
nu_plugin_average = {version = "0.1.0", path = "./crates/nu_plugin_average", optional=true}
nu_plugin_binaryview = {version = "0.1.0", path = "./crates/nu_plugin_binaryview", optional=true}
nu_plugin_fetch = {version = "0.1.0", path = "./crates/nu_plugin_fetch", optional=true}
nu_plugin_inc = {version = "0.1.0", path = "./crates/nu_plugin_inc", optional=true}
nu_plugin_match = {version = "0.1.0", path = "./crates/nu_plugin_match", optional=true}
nu_plugin_post = {version = "0.1.0", path = "./crates/nu_plugin_post", optional=true}
nu_plugin_ps = {version = "0.1.0", path = "./crates/nu_plugin_ps", optional=true}
nu_plugin_str = {version = "0.1.0", path = "./crates/nu_plugin_str", optional=true}
nu_plugin_sum = {version = "0.1.0", path = "./crates/nu_plugin_sum", optional=true}
nu_plugin_sys = {version = "0.1.0", path = "./crates/nu_plugin_sys", optional=true}
nu_plugin_textview = {version = "0.1.0", path = "./crates/nu_plugin_textview", optional=true}
nu_plugin_tree = {version = "0.1.0", path = "./crates/nu_plugin_tree", optional=true}
nu-macros = { version = "0.1.0", path = "./crates/nu-macros" }
nu-source = { version = "0.7.0", path = "./crates/nu-source" }
nu-protocol = { version = "0.7.0", path = "./crates/nu-protocol" }
nu-errors = { version = "0.7.0", path = "./crates/nu-errors" }
nu-parser = { version = "0.7.0", path = "./crates/nu-parser" }
nu-value-ext = { version = "0.7.0", path = "./crates/nu-value-ext" }
nu_plugin_average = {version = "0.7.0", path = "./crates/nu_plugin_average", optional=true}
nu_plugin_binaryview = {version = "0.7.0", path = "./crates/nu_plugin_binaryview", optional=true}
nu_plugin_fetch = {version = "0.7.0", path = "./crates/nu_plugin_fetch", optional=true}
nu_plugin_inc = {version = "0.7.0", path = "./crates/nu_plugin_inc", optional=true}
nu_plugin_match = {version = "0.7.0", path = "./crates/nu_plugin_match", optional=true}
nu_plugin_post = {version = "0.7.0", path = "./crates/nu_plugin_post", optional=true}
nu_plugin_ps = {version = "0.7.0", path = "./crates/nu_plugin_ps", optional=true}
nu_plugin_str = {version = "0.7.0", path = "./crates/nu_plugin_str", optional=true}
nu_plugin_sum = {version = "0.7.0", path = "./crates/nu_plugin_sum", optional=true}
nu_plugin_sys = {version = "0.7.0", path = "./crates/nu_plugin_sys", optional=true}
nu_plugin_textview = {version = "0.7.0", path = "./crates/nu_plugin_textview", optional=true}
nu_plugin_tree = {version = "0.7.0", path = "./crates/nu_plugin_tree", optional=true}
nu-macros = { version = "0.7.0", path = "./crates/nu-macros" }
query_interface = "0.3.5"
@ -158,12 +158,12 @@ features = ["bundled", "blob"]
[dev-dependencies]
pretty_assertions = "0.6.1"
test-support = { version = "0.1.0", path = "./crates/test-support" }
test-support = { version = "0.7.0", path = "./crates/test-support" }
[build-dependencies]
toml = "0.5.5"
serde = { version = "1.0.103", features = ["derive"] }
nu-build = { version = "0.1.0", path = "./crates/nu-build" }
nu-build = { version = "0.7.0", path = "./crates/nu-build" }
[lib]
name = "nu"

View File

@ -1,6 +1,6 @@
[package]
name = "nu-build"
version = "0.1.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>"]
edition = "2018"

View File

@ -1,13 +1,13 @@
[package]
name = "nu-errors"
version = "0.1.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>"]
edition = "2018"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
nu-source = { path = "../nu-source" }
nu-source = { path = "../nu-source", version = "0.7.0" }
ansi_term = "0.12.1"
bigdecimal = { version = "0.1.0", features = ["serde"] }
@ -26,4 +26,4 @@ toml = "0.5.5"
serde_json = "1.0.44"
[build-dependencies]
nu-build = { version = "0.1.0", path = "../nu-build" }
nu-build = { version = "0.7.0", path = "../nu-build" }

View File

@ -1,10 +1,10 @@
[package]
name = "nu-macros"
version = "0.1.0"
version = "0.7.0"
authors = ["Yehuda Katz <wycats@gmail.com>"]
edition = "2018"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
nu-protocol = { path = "../nu-protocol", version = "0.1.0" }
nu-protocol = { path = "../nu-protocol", version = "0.7.0" }

View File

@ -1,15 +1,15 @@
[package]
name = "nu-parser"
version = "0.1.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>"]
edition = "2018"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
nu-errors = { path = "../nu-errors" }
nu-source = { path = "../nu-source" }
nu-protocol = { path = "../nu-protocol" }
nu-errors = { path = "../nu-errors", version = "0.7.0" }
nu-source = { path = "../nu-source", version = "0.7.0" }
nu-protocol = { path = "../nu-protocol", version = "0.7.0" }
pretty_env_logger = "0.3.1"
pretty = "0.5.2"
@ -38,7 +38,7 @@ enumflags2 = "0.6.2"
pretty_assertions = "0.6.1"
[build-dependencies]
nu-build = { version = "0.1.0", path = "../nu-build" }
nu-build = { version = "0.7.0", path = "../nu-build" }
[features]
stable = []

View File

@ -1,14 +1,14 @@
[package]
name = "nu-protocol"
version = "0.1.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>"]
edition = "2018"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
nu-source = { path = "../nu-source" }
nu-errors = { path = "../nu-errors" }
nu-source = { path = "../nu-source", version = "0.7.0" }
nu-errors = { path = "../nu-errors", version = "0.7.0" }
serde = { version = "1.0.103", features = ["derive"] }
indexmap = { version = "1.3.0", features = ["serde-1"] }
@ -37,4 +37,4 @@ toml = "0.5.5"
serde_json = "1.0.44"
[build-dependencies]
nu-build = { version = "0.1.0", path = "../nu-build" }
nu-build = { version = "0.7.0", path = "../nu-build" }

View File

@ -1,6 +1,6 @@
[package]
name = "nu-source"
version = "0.1.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>"]
edition = "2018"
description = "A source string characterizer for Nushell"
@ -19,4 +19,4 @@ termcolor = "1.0.5"
pretty = "0.5.2"
[build-dependencies]
nu-build = { version = "0.1.0", path = "../nu-build" }
nu-build = { version = "0.7.0", path = "../nu-build" }

View File

@ -1,6 +1,6 @@
[package]
name = "nu-value-ext"
version = "0.1.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>"]
edition = "2018"
description = "A source string characterizer for Nushell"
@ -9,13 +9,13 @@ license = "MIT"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
nu-source = { path = "../nu-source" }
nu-errors = { path = "../nu-errors" }
nu-parser = { path = "../nu-parser" }
nu-protocol = { path = "../nu-protocol" }
nu-source = { path = "../nu-source", version = "0.7.0" }
nu-errors = { path = "../nu-errors", version = "0.7.0" }
nu-parser = { path = "../nu-parser", version = "0.7.0" }
nu-protocol = { path = "../nu-protocol", version = "0.7.0" }
num-traits = "0.2.10"
itertools = "0.8.2"
[build-dependencies]
nu-build = { version = "0.1.0", path = "../nu-build" }
nu-build = { version = "0.7.0", path = "../nu-build" }

View File

@ -1,15 +1,15 @@
[package]
name = "nu_plugin_average"
version = "0.1.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>"]
edition = "2018"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
nu-protocol = { path = "../nu-protocol" }
nu-source = { path = "../nu-source" }
nu-errors = { path = "../nu-errors" }
nu-protocol = { path = "../nu-protocol", version = "0.7.0" }
nu-source = { path = "../nu-source", version = "0.7.0" }
nu-errors = { path = "../nu-errors", version = "0.7.0" }
[build-dependencies]
nu-build = { version = "0.1.0", path = "../nu-build" }
nu-build = { version = "0.7.0", path = "../nu-build" }

View File

@ -1,6 +1,6 @@
[package]
name = "nu_plugin_binaryview"
version = "0.1.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>"]
edition = "2018"
@ -9,13 +9,13 @@ edition = "2018"
[dependencies]
ansi_term = "0.12.1"
crossterm = { version = "0.10.2" }
nu-protocol = { path = "../nu-protocol" }
nu-source = { path = "../nu-source" }
nu-errors = { path = "../nu-errors" }
nu-protocol = { path = "../nu-protocol", version = "0.7.0" }
nu-source = { path = "../nu-source", version = "0.7.0" }
nu-errors = { path = "../nu-errors", version = "0.7.0" }
pretty-hex = "0.1.1"
image = { version = "0.22.3", default_features = false, features = ["png_codec", "jpeg"] }
rawkey = "0.1.2"
neso = "0.5.0"
[build-dependencies]
nu-build = { version = "0.1.0", path = "../nu-build" }
nu-build = { version = "0.7.0", path = "../nu-build" }

View File

@ -1,18 +1,18 @@
[package]
name = "nu_plugin_fetch"
version = "0.1.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>"]
edition = "2018"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
nu-protocol = { path = "../nu-protocol" }
nu-source = { path = "../nu-source" }
nu-errors = { path = "../nu-errors" }
nu-protocol = { path = "../nu-protocol", version = "0.7.0" }
nu-source = { path = "../nu-source", version = "0.7.0" }
nu-errors = { path = "../nu-errors", version = "0.7.0" }
futures-preview = { version = "=0.3.0-alpha.19", features = ["compat", "io-compat"] }
surf = "1.0.3"
url = "2.1.0"
[build-dependencies]
nu-build = { version = "0.1.0", path = "../nu-build" }
nu-build = { version = "0.7.0", path = "../nu-build" }

View File

@ -1,18 +1,18 @@
[package]
name = "nu_plugin_inc"
version = "0.1.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>"]
edition = "2018"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
nu-protocol = { path = "../nu-protocol" }
nu-source = { path = "../nu-source" }
nu-errors = { path = "../nu-errors" }
nu-value-ext = { path = "../nu-value-ext" }
nu-protocol = { path = "../nu-protocol", version = "0.7.0" }
nu-source = { path = "../nu-source", version = "0.7.0" }
nu-errors = { path = "../nu-errors", version = "0.7.0" }
nu-value-ext = { path = "../nu-value-ext", version = "0.7.0" }
semver = "0.9.0"
indexmap = "1.3.0"
[build-dependencies]
nu-build = { version = "0.1.0", path = "../nu-build" }
nu-build = { version = "0.7.0", path = "../nu-build" }

View File

@ -1,17 +1,17 @@
[package]
name = "nu_plugin_match"
version = "0.1.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>"]
edition = "2018"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
nu-protocol = { path = "../nu-protocol" }
nu-source = { path = "../nu-source" }
nu-errors = { path = "../nu-errors" }
nu-protocol = { path = "../nu-protocol", version = "0.7.0" }
nu-source = { path = "../nu-source", version = "0.7.0" }
nu-errors = { path = "../nu-errors", version = "0.7.0" }
futures-preview = { version = "=0.3.0-alpha.19", features = ["compat", "io-compat"] }
regex = "1"
[build-dependencies]
nu-build = { version = "0.1.0", path = "../nu-build" }
nu-build = { version = "0.7.0", path = "../nu-build" }

View File

@ -1,15 +1,15 @@
[package]
name = "nu_plugin_post"
version = "0.1.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>"]
edition = "2018"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
nu-protocol = { path = "../nu-protocol" }
nu-source = { path = "../nu-source" }
nu-errors = { path = "../nu-errors" }
nu-protocol = { path = "../nu-protocol", version = "0.7.0" }
nu-source = { path = "../nu-source", version = "0.7.0" }
nu-errors = { path = "../nu-errors", version = "0.7.0" }
futures-preview = { version = "=0.3.0-alpha.19", features = ["compat", "io-compat"] }
surf = "1.0.3"
url = "2.1.0"
@ -18,4 +18,4 @@ base64 = "0.11"
num-traits = "0.2.10"
[build-dependencies]
nu-build = { version = "0.1.0", path = "../nu-build" }
nu-build = { version = "0.7.0", path = "../nu-build" }

View File

@ -1,15 +1,15 @@
[package]
name = "nu_plugin_ps"
version = "0.1.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>"]
edition = "2018"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
nu-protocol = { path = "../nu-protocol" }
nu-source = { path = "../nu-source" }
nu-errors = { path = "../nu-errors" }
nu-protocol = { path = "../nu-protocol", version = "0.7.0" }
nu-source = { path = "../nu-source", version = "0.7.0" }
nu-errors = { path = "../nu-errors", version = "0.7.0" }
futures-preview = { version = "=0.3.0-alpha.19", features = ["compat", "io-compat"] }
heim = "0.0.9"
@ -18,4 +18,4 @@ pin-utils = "0.1.0-alpha.4"
futures-util = "0.3.1"
[build-dependencies]
nu-build = { version = "0.1.0", path = "../nu-build" }
nu-build = { version = "0.7.0", path = "../nu-build" }

View File

@ -1,20 +1,20 @@
[package]
name = "nu_plugin_str"
version = "0.1.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>"]
edition = "2018"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
nu-protocol = { path = "../nu-protocol" }
nu-source = { path = "../nu-source" }
nu-errors = { path = "../nu-errors" }
nu-value-ext = { path = "../nu-value-ext" }
nu-protocol = { path = "../nu-protocol", version = "0.7.0" }
nu-source = { path = "../nu-source", version = "0.7.0" }
nu-errors = { path = "../nu-errors", version = "0.7.0" }
nu-value-ext = { path = "../nu-value-ext", version = "0.7.0" }
regex = "1"
indexmap = "1.3.0"
num-bigint = "0.2.3"
[build-dependencies]
nu-build = { version = "0.1.0", path = "../nu-build" }
nu-build = { version = "0.7.0", path = "../nu-build" }

View File

@ -1,15 +1,15 @@
[package]
name = "nu_plugin_sum"
version = "0.1.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>"]
edition = "2018"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
nu-protocol = { path = "../nu-protocol" }
nu-source = { path = "../nu-source" }
nu-errors = { path = "../nu-errors" }
nu-protocol = { path = "../nu-protocol", version = "0.7.0" }
nu-source = { path = "../nu-source", version = "0.7.0" }
nu-errors = { path = "../nu-errors", version = "0.7.0" }
[build-dependencies]
nu-build = { version = "0.1.0", path = "../nu-build" }
nu-build = { version = "0.7.0", path = "../nu-build" }

View File

@ -1,19 +1,19 @@
[package]
name = "nu_plugin_sys"
version = "0.1.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>"]
edition = "2018"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
nu-protocol = { path = "../nu-protocol" }
nu-source = { path = "../nu-source" }
nu-errors = { path = "../nu-errors" }
nu-protocol = { path = "../nu-protocol", version = "0.7.0" }
nu-source = { path = "../nu-source", version = "0.7.0" }
nu-errors = { path = "../nu-errors", version = "0.7.0" }
heim = "0.0.9"
futures-preview = { version = "=0.3.0-alpha.19", features = ["compat", "io-compat"] }
battery = "0.7.5"
futures-util = "0.3.1"
[build-dependencies]
nu-build = { version = "0.1.0", path = "../nu-build" }
nu-build = { version = "0.7.0", path = "../nu-build" }

View File

@ -1,15 +1,15 @@
[package]
name = "nu_plugin_textview"
version = "0.1.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>"]
edition = "2018"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
nu-protocol = { path = "../nu-protocol" }
nu-source = { path = "../nu-source" }
nu-errors = { path = "../nu-errors" }
nu-protocol = { path = "../nu-protocol", version = "0.7.0" }
nu-source = { path = "../nu-source", version = "0.7.0" }
nu-errors = { path = "../nu-errors", version = "0.7.0" }
crossterm = "0.10.2"
syntect = "3.2.0"
@ -18,4 +18,4 @@ ansi_term = "0.12.1"
url = "2.1.0"
[build-dependencies]
nu-build = { version = "0.1.0", path = "../nu-build" }
nu-build = { version = "0.7.0", path = "../nu-build" }

View File

@ -1,17 +1,17 @@
[package]
name = "nu_plugin_tree"
version = "0.1.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>"]
edition = "2018"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
nu-protocol = { path = "../nu-protocol" }
nu-source = { path = "../nu-source" }
nu-errors = { path = "../nu-errors" }
nu-protocol = { path = "../nu-protocol", version = "0.7.0" }
nu-source = { path = "../nu-source", version = "0.7.0" }
nu-errors = { path = "../nu-errors", version = "0.7.0" }
ptree = {version = "0.2" }
derive-new = "0.5.8"
[build-dependencies]
nu-build = { version = "0.1.0", path = "../nu-build" }
nu-build = { version = "0.7.0", path = "../nu-build" }

View File

@ -1,6 +1,6 @@
[package]
name = "test-support"
version = "0.1.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>"]
edition = "2018"
description = "A source string characterizer for Nushell"