diff --git a/Cargo.lock b/Cargo.lock index e848ec0c3..6ad52b0d4 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -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", diff --git a/Cargo.toml b/Cargo.toml index bb58af26b..7302fc072 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "nu" -version = "0.6.2" +version = "0.7.0" authors = ["Yehuda Katz ", "Jonathan Turner ", "Andrés N. Robalino "] 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" diff --git a/crates/nu-build/Cargo.toml b/crates/nu-build/Cargo.toml index 7759e47ac..9b61f6471 100644 --- a/crates/nu-build/Cargo.toml +++ b/crates/nu-build/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "nu-build" -version = "0.1.0" +version = "0.7.0" authors = ["Yehuda Katz ", "Jonathan Turner ", "Andrés N. Robalino "] edition = "2018" diff --git a/crates/nu-errors/Cargo.toml b/crates/nu-errors/Cargo.toml index 6faf46fee..d4643e87c 100644 --- a/crates/nu-errors/Cargo.toml +++ b/crates/nu-errors/Cargo.toml @@ -1,13 +1,13 @@ [package] name = "nu-errors" -version = "0.1.0" +version = "0.7.0" authors = ["Yehuda Katz ", "Jonathan Turner ", "Andrés N. Robalino "] 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" } diff --git a/crates/nu-macros/Cargo.toml b/crates/nu-macros/Cargo.toml index cddf28a1c..d47e92a76 100644 --- a/crates/nu-macros/Cargo.toml +++ b/crates/nu-macros/Cargo.toml @@ -1,10 +1,10 @@ [package] name = "nu-macros" -version = "0.1.0" +version = "0.7.0" authors = ["Yehuda Katz "] 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" } \ No newline at end of file +nu-protocol = { path = "../nu-protocol", version = "0.7.0" } \ No newline at end of file diff --git a/crates/nu-parser/Cargo.toml b/crates/nu-parser/Cargo.toml index df3bf565d..6e5a79007 100644 --- a/crates/nu-parser/Cargo.toml +++ b/crates/nu-parser/Cargo.toml @@ -1,15 +1,15 @@ [package] name = "nu-parser" -version = "0.1.0" +version = "0.7.0" authors = ["Yehuda Katz ", "Jonathan Turner ", "Andrés N. Robalino "] 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 = [] diff --git a/crates/nu-protocol/Cargo.toml b/crates/nu-protocol/Cargo.toml index 18dc01619..643c57d3f 100644 --- a/crates/nu-protocol/Cargo.toml +++ b/crates/nu-protocol/Cargo.toml @@ -1,14 +1,14 @@ [package] name = "nu-protocol" -version = "0.1.0" +version = "0.7.0" authors = ["Yehuda Katz ", "Jonathan Turner ", "Andrés N. Robalino "] 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" } diff --git a/crates/nu-source/Cargo.toml b/crates/nu-source/Cargo.toml index 07c154e69..79c909c17 100644 --- a/crates/nu-source/Cargo.toml +++ b/crates/nu-source/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "nu-source" -version = "0.1.0" +version = "0.7.0" authors = ["Yehuda Katz ", "Jonathan Turner ", "Andrés N. Robalino "] 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" } diff --git a/crates/nu-value-ext/Cargo.toml b/crates/nu-value-ext/Cargo.toml index a5d79f898..b3b334df3 100644 --- a/crates/nu-value-ext/Cargo.toml +++ b/crates/nu-value-ext/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "nu-value-ext" -version = "0.1.0" +version = "0.7.0" authors = ["Yehuda Katz ", "Jonathan Turner ", "Andrés N. Robalino "] 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" } diff --git a/crates/nu_plugin_average/Cargo.toml b/crates/nu_plugin_average/Cargo.toml index fb03644ca..5e741e513 100644 --- a/crates/nu_plugin_average/Cargo.toml +++ b/crates/nu_plugin_average/Cargo.toml @@ -1,15 +1,15 @@ [package] name = "nu_plugin_average" -version = "0.1.0" +version = "0.7.0" authors = ["Yehuda Katz ", "Jonathan Turner ", "Andrés N. Robalino "] 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" } diff --git a/crates/nu_plugin_binaryview/Cargo.toml b/crates/nu_plugin_binaryview/Cargo.toml index c2f48c35f..88126afbb 100644 --- a/crates/nu_plugin_binaryview/Cargo.toml +++ b/crates/nu_plugin_binaryview/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "nu_plugin_binaryview" -version = "0.1.0" +version = "0.7.0" authors = ["Yehuda Katz ", "Jonathan Turner ", "Andrés N. Robalino "] 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" } diff --git a/crates/nu_plugin_fetch/Cargo.toml b/crates/nu_plugin_fetch/Cargo.toml index 7051895d9..708cd661e 100644 --- a/crates/nu_plugin_fetch/Cargo.toml +++ b/crates/nu_plugin_fetch/Cargo.toml @@ -1,18 +1,18 @@ [package] name = "nu_plugin_fetch" -version = "0.1.0" +version = "0.7.0" authors = ["Yehuda Katz ", "Jonathan Turner ", "Andrés N. Robalino "] 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" } diff --git a/crates/nu_plugin_inc/Cargo.toml b/crates/nu_plugin_inc/Cargo.toml index 0ba467c5a..e01075b3b 100644 --- a/crates/nu_plugin_inc/Cargo.toml +++ b/crates/nu_plugin_inc/Cargo.toml @@ -1,18 +1,18 @@ [package] name = "nu_plugin_inc" -version = "0.1.0" +version = "0.7.0" authors = ["Yehuda Katz ", "Jonathan Turner ", "Andrés N. Robalino "] 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" } diff --git a/crates/nu_plugin_match/Cargo.toml b/crates/nu_plugin_match/Cargo.toml index 27a50d970..51b71beff 100644 --- a/crates/nu_plugin_match/Cargo.toml +++ b/crates/nu_plugin_match/Cargo.toml @@ -1,17 +1,17 @@ [package] name = "nu_plugin_match" -version = "0.1.0" +version = "0.7.0" authors = ["Yehuda Katz ", "Jonathan Turner ", "Andrés N. Robalino "] 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" } diff --git a/crates/nu_plugin_post/Cargo.toml b/crates/nu_plugin_post/Cargo.toml index 5c0dc1e73..1c684f4cb 100644 --- a/crates/nu_plugin_post/Cargo.toml +++ b/crates/nu_plugin_post/Cargo.toml @@ -1,15 +1,15 @@ [package] name = "nu_plugin_post" -version = "0.1.0" +version = "0.7.0" authors = ["Yehuda Katz ", "Jonathan Turner ", "Andrés N. Robalino "] 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" } diff --git a/crates/nu_plugin_ps/Cargo.toml b/crates/nu_plugin_ps/Cargo.toml index 21d9b1a4d..b9558f549 100644 --- a/crates/nu_plugin_ps/Cargo.toml +++ b/crates/nu_plugin_ps/Cargo.toml @@ -1,15 +1,15 @@ [package] name = "nu_plugin_ps" -version = "0.1.0" +version = "0.7.0" authors = ["Yehuda Katz ", "Jonathan Turner ", "Andrés N. Robalino "] 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" } diff --git a/crates/nu_plugin_str/Cargo.toml b/crates/nu_plugin_str/Cargo.toml index fe80441df..8471560ce 100644 --- a/crates/nu_plugin_str/Cargo.toml +++ b/crates/nu_plugin_str/Cargo.toml @@ -1,20 +1,20 @@ [package] name = "nu_plugin_str" -version = "0.1.0" +version = "0.7.0" authors = ["Yehuda Katz ", "Jonathan Turner ", "Andrés N. Robalino "] 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" } diff --git a/crates/nu_plugin_sum/Cargo.toml b/crates/nu_plugin_sum/Cargo.toml index 77bbcd741..13b42dfa9 100644 --- a/crates/nu_plugin_sum/Cargo.toml +++ b/crates/nu_plugin_sum/Cargo.toml @@ -1,15 +1,15 @@ [package] name = "nu_plugin_sum" -version = "0.1.0" +version = "0.7.0" authors = ["Yehuda Katz ", "Jonathan Turner ", "Andrés N. Robalino "] 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" } diff --git a/crates/nu_plugin_sys/Cargo.toml b/crates/nu_plugin_sys/Cargo.toml index 5348bee79..3b5532947 100644 --- a/crates/nu_plugin_sys/Cargo.toml +++ b/crates/nu_plugin_sys/Cargo.toml @@ -1,19 +1,19 @@ [package] name = "nu_plugin_sys" -version = "0.1.0" +version = "0.7.0" authors = ["Yehuda Katz ", "Jonathan Turner ", "Andrés N. Robalino "] 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" } diff --git a/crates/nu_plugin_textview/Cargo.toml b/crates/nu_plugin_textview/Cargo.toml index 4b390887e..06eab33f0 100644 --- a/crates/nu_plugin_textview/Cargo.toml +++ b/crates/nu_plugin_textview/Cargo.toml @@ -1,15 +1,15 @@ [package] name = "nu_plugin_textview" -version = "0.1.0" +version = "0.7.0" authors = ["Yehuda Katz ", "Jonathan Turner ", "Andrés N. Robalino "] 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" } diff --git a/crates/nu_plugin_tree/Cargo.toml b/crates/nu_plugin_tree/Cargo.toml index 020c2e58e..c86825f2f 100644 --- a/crates/nu_plugin_tree/Cargo.toml +++ b/crates/nu_plugin_tree/Cargo.toml @@ -1,17 +1,17 @@ [package] name = "nu_plugin_tree" -version = "0.1.0" +version = "0.7.0" authors = ["Yehuda Katz ", "Jonathan Turner ", "Andrés N. Robalino "] 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" } diff --git a/crates/test-support/Cargo.toml b/crates/test-support/Cargo.toml index 11371088f..1157876f0 100644 --- a/crates/test-support/Cargo.toml +++ b/crates/test-support/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "test-support" -version = "0.1.0" +version = "0.7.0" authors = ["Yehuda Katz ", "Jonathan Turner ", "Andrés N. Robalino "] edition = "2018" description = "A source string characterizer for Nushell"