From d30c40b40ebfbb411a503ad7c7bceae8029c6689 Mon Sep 17 00:00:00 2001 From: Jonathan Turner Date: Sun, 5 Jul 2020 13:12:44 -0700 Subject: [PATCH] Bump to 0.16.1 (#2116) --- Cargo.lock | 42 +++++++-------- Cargo.toml | 74 +++++++++++++------------- crates/nu-build/Cargo.toml | 8 +-- crates/nu-cli/Cargo.toml | 58 ++++++++++---------- crates/nu-errors/Cargo.toml | 24 ++++----- crates/nu-parser/Cargo.toml | 26 ++++----- crates/nu-plugin/Cargo.toml | 24 ++++----- crates/nu-protocol/Cargo.toml | 42 +++++++-------- crates/nu-source/Cargo.toml | 14 ++--- crates/nu-table/Cargo.toml | 8 +-- crates/nu-test-support/Cargo.toml | 16 +++--- crates/nu-value-ext/Cargo.toml | 20 +++---- crates/nu_plugin_binaryview/Cargo.toml | 24 ++++----- crates/nu_plugin_fetch/Cargo.toml | 20 +++---- crates/nu_plugin_inc/Cargo.toml | 18 +++---- crates/nu_plugin_match/Cargo.toml | 18 +++---- crates/nu_plugin_post/Cargo.toml | 24 ++++----- crates/nu_plugin_ps/Cargo.toml | 20 +++---- crates/nu_plugin_start/Cargo.toml | 24 ++++----- crates/nu_plugin_sys/Cargo.toml | 20 +++---- crates/nu_plugin_textview/Cargo.toml | 24 ++++----- crates/nu_plugin_tree/Cargo.toml | 18 +++---- docs/commands/to-toml.md | 2 +- 23 files changed, 284 insertions(+), 284 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index b2fc520da2..4eb812814a 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2430,7 +2430,7 @@ dependencies = [ [[package]] name = "nu" -version = "0.16.0" +version = "0.16.1" dependencies = [ "clap", "crossterm", @@ -2468,7 +2468,7 @@ dependencies = [ [[package]] name = "nu-build" -version = "0.16.0" +version = "0.16.1" dependencies = [ "lazy_static 1.4.0", "serde 1.0.114", @@ -2478,7 +2478,7 @@ dependencies = [ [[package]] name = "nu-cli" -version = "0.16.0" +version = "0.16.1" dependencies = [ "ansi_term 0.12.1", "app_dirs", @@ -2571,7 +2571,7 @@ dependencies = [ [[package]] name = "nu-errors" -version = "0.16.0" +version = "0.16.1" dependencies = [ "ansi_term 0.12.1", "bigdecimal", @@ -2591,7 +2591,7 @@ dependencies = [ [[package]] name = "nu-parser" -version = "0.16.0" +version = "0.16.1" dependencies = [ "bigdecimal", "codespan-reporting", @@ -2610,7 +2610,7 @@ dependencies = [ [[package]] name = "nu-plugin" -version = "0.16.0" +version = "0.16.1" dependencies = [ "bigdecimal", "indexmap", @@ -2626,7 +2626,7 @@ dependencies = [ [[package]] name = "nu-protocol" -version = "0.16.0" +version = "0.16.1" dependencies = [ "ansi_term 0.12.1", "bigdecimal", @@ -2655,7 +2655,7 @@ dependencies = [ [[package]] name = "nu-source" -version = "0.16.0" +version = "0.16.1" dependencies = [ "codespan-reporting", "derive-new", @@ -2668,7 +2668,7 @@ dependencies = [ [[package]] name = "nu-table" -version = "0.16.0" +version = "0.16.1" dependencies = [ "ansi_term 0.12.1", "unicode-width", @@ -2676,7 +2676,7 @@ dependencies = [ [[package]] name = "nu-test-support" -version = "0.16.0" +version = "0.16.1" dependencies = [ "directories 2.0.2", "dunce", @@ -2692,7 +2692,7 @@ dependencies = [ [[package]] name = "nu-value-ext" -version = "0.16.0" +version = "0.16.1" dependencies = [ "indexmap", "itertools", @@ -2706,7 +2706,7 @@ dependencies = [ [[package]] name = "nu_plugin_binaryview" -version = "0.16.0" +version = "0.16.1" dependencies = [ "ansi_term 0.12.1", "crossterm", @@ -2723,7 +2723,7 @@ dependencies = [ [[package]] name = "nu_plugin_fetch" -version = "0.16.0" +version = "0.16.1" dependencies = [ "base64 0.12.3", "futures 0.3.5", @@ -2738,7 +2738,7 @@ dependencies = [ [[package]] name = "nu_plugin_inc" -version = "0.16.0" +version = "0.16.1" dependencies = [ "nu-build", "nu-errors", @@ -2751,7 +2751,7 @@ dependencies = [ [[package]] name = "nu_plugin_match" -version = "0.16.0" +version = "0.16.1" dependencies = [ "futures 0.3.5", "nu-build", @@ -2764,7 +2764,7 @@ dependencies = [ [[package]] name = "nu_plugin_post" -version = "0.16.0" +version = "0.16.1" dependencies = [ "base64 0.12.3", "futures 0.3.5", @@ -2781,7 +2781,7 @@ dependencies = [ [[package]] name = "nu_plugin_ps" -version = "0.16.0" +version = "0.16.1" dependencies = [ "futures 0.3.5", "futures-timer", @@ -2795,7 +2795,7 @@ dependencies = [ [[package]] name = "nu_plugin_start" -version = "0.16.0" +version = "0.16.1" dependencies = [ "glob", "nu-build", @@ -2809,7 +2809,7 @@ dependencies = [ [[package]] name = "nu_plugin_sys" -version = "0.16.0" +version = "0.16.1" dependencies = [ "battery", "futures 0.3.5", @@ -2824,7 +2824,7 @@ dependencies = [ [[package]] name = "nu_plugin_textview" -version = "0.16.0" +version = "0.16.1" dependencies = [ "ansi_term 0.12.1", "bat", @@ -2842,7 +2842,7 @@ dependencies = [ [[package]] name = "nu_plugin_tree" -version = "0.16.0" +version = "0.16.1" dependencies = [ "derive-new", "nu-build", diff --git a/Cargo.toml b/Cargo.toml index 13acca04f3..b9d25ad70d 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,16 +1,16 @@ [package] -name = "nu" -version = "0.16.0" authors = ["The Nu Project Contributors"] -description = "A new type of shell" -license = "MIT" -edition = "2018" -readme = "README.md" default-run = "nu" -repository = "https://github.com/nushell/nushell" -homepage = "https://www.nushell.sh" +description = "A new type of shell" documentation = "https://www.nushell.sh/book/" +edition = "2018" exclude = ["images"] +homepage = "https://www.nushell.sh" +license = "MIT" +name = "nu" +readme = "README.md" +repository = "https://github.com/nushell/nushell" +version = "0.16.1" [workspace] members = ["crates/*/"] @@ -18,63 +18,63 @@ members = ["crates/*/"] # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] -nu-cli = { version = "0.16.0", path = "./crates/nu-cli" } -nu-source = { version = "0.16.0", path = "./crates/nu-source" } -nu-plugin = { version = "0.16.0", path = "./crates/nu-plugin" } -nu-protocol = { version = "0.16.0", path = "./crates/nu-protocol" } -nu-errors = { version = "0.16.0", path = "./crates/nu-errors" } -nu-parser = { version = "0.16.0", path = "./crates/nu-parser" } -nu-value-ext = { version = "0.16.0", path = "./crates/nu-value-ext" } -nu_plugin_binaryview = { version = "0.16.0", path = "./crates/nu_plugin_binaryview", optional=true } -nu_plugin_fetch = { version = "0.16.0", path = "./crates/nu_plugin_fetch", optional=true } -nu_plugin_inc = { version = "0.16.0", path = "./crates/nu_plugin_inc", optional=true } -nu_plugin_match = { version = "0.16.0", path = "./crates/nu_plugin_match", optional=true } -nu_plugin_post = { version = "0.16.0", path = "./crates/nu_plugin_post", optional=true } -nu_plugin_ps = { version = "0.16.0", path = "./crates/nu_plugin_ps", optional=true } -nu_plugin_start = { version = "0.16.0", path = "./crates/nu_plugin_start", optional=true } -nu_plugin_sys = { version = "0.16.0", path = "./crates/nu_plugin_sys", optional=true } -nu_plugin_textview = { version = "0.16.0", path = "./crates/nu_plugin_textview", optional=true } -nu_plugin_tree = { version = "0.16.0", path = "./crates/nu_plugin_tree", optional=true } +nu-cli = {version = "0.16.1", path = "./crates/nu-cli"} +nu-errors = {version = "0.16.1", path = "./crates/nu-errors"} +nu-parser = {version = "0.16.1", path = "./crates/nu-parser"} +nu-plugin = {version = "0.16.1", path = "./crates/nu-plugin"} +nu-protocol = {version = "0.16.1", path = "./crates/nu-protocol"} +nu-source = {version = "0.16.1", path = "./crates/nu-source"} +nu-value-ext = {version = "0.16.1", path = "./crates/nu-value-ext"} +nu_plugin_binaryview = {version = "0.16.1", path = "./crates/nu_plugin_binaryview", optional = true} +nu_plugin_fetch = {version = "0.16.1", path = "./crates/nu_plugin_fetch", optional = true} +nu_plugin_inc = {version = "0.16.1", path = "./crates/nu_plugin_inc", optional = true} +nu_plugin_match = {version = "0.16.1", path = "./crates/nu_plugin_match", optional = true} +nu_plugin_post = {version = "0.16.1", path = "./crates/nu_plugin_post", optional = true} +nu_plugin_ps = {version = "0.16.1", path = "./crates/nu_plugin_ps", optional = true} +nu_plugin_start = {version = "0.16.1", path = "./crates/nu_plugin_start", optional = true} +nu_plugin_sys = {version = "0.16.1", path = "./crates/nu_plugin_sys", optional = true} +nu_plugin_textview = {version = "0.16.1", path = "./crates/nu_plugin_textview", optional = true} +nu_plugin_tree = {version = "0.16.1", path = "./crates/nu_plugin_tree", optional = true} -crossterm = { version = "0.17.5", optional = true } -semver = { version = "0.10.0", optional = true } -syntect = { version = "4.2", default-features = false, features = ["default-fancy"], optional = true} -url = { version = "2.1.1", optional = true } +crossterm = {version = "0.17.5", optional = true} +semver = {version = "0.10.0", optional = true} +syntect = {version = "4.2", default-features = false, features = ["default-fancy"], optional = true} +url = {version = "2.1.1", optional = true} clap = "2.33.1" ctrlc = "3.1.4" dunce = "1.0.1" -futures = { version = "0.3", features = ["compat", "io-compat"] } +futures = {version = "0.3", features = ["compat", "io-compat"]} log = "0.4.8" pretty_env_logger = "0.4.0" starship = "0.43.0" [dev-dependencies] -nu-test-support = { version = "0.16.0", path = "./crates/nu-test-support" } +nu-test-support = {version = "0.16.1", path = "./crates/nu-test-support"} [build-dependencies] +nu-build = {version = "0.16.1", path = "./crates/nu-build"} +serde = {version = "1.0.110", features = ["derive"]} toml = "0.5.6" -serde = { version = "1.0.110", features = ["derive"] } -nu-build = { version = "0.16.0", path = "./crates/nu-build" } [features] default = ["sys", "ps", "textview", "inc"] stable = ["default", "binaryview", "match", "tree", "post", "fetch", "clipboard-cli", "trash-support", "start"] # Default -textview = ["crossterm", "syntect", "url", "nu_plugin_textview"] -sys = ["nu_plugin_sys"] -ps = ["nu_plugin_ps"] inc = ["semver", "nu_plugin_inc"] +ps = ["nu_plugin_ps"] +sys = ["nu_plugin_sys"] +textview = ["crossterm", "syntect", "url", "nu_plugin_textview"] # Stable binaryview = ["nu_plugin_binaryview"] fetch = ["nu_plugin_fetch"] match = ["nu_plugin_match"] post = ["nu_plugin_post"] +start = ["nu_plugin_start"] trace = ["nu-parser/trace"] tree = ["nu_plugin_tree"] -start = ["nu_plugin_start"] clipboard-cli = ["nu-cli/clipboard-cli"] # starship-prompt = ["nu-cli/starship-prompt"] diff --git a/crates/nu-build/Cargo.toml b/crates/nu-build/Cargo.toml index a9811a0e5a..e8f31dc152 100644 --- a/crates/nu-build/Cargo.toml +++ b/crates/nu-build/Cargo.toml @@ -1,16 +1,16 @@ [package] -name = "nu-build" -version = "0.16.0" authors = ["The Nu Project Contributors"] -edition = "2018" description = "Core build system for nushell" +edition = "2018" license = "MIT" +name = "nu-build" +version = "0.16.1" [lib] doctest = false [dependencies] -serde = { version = "1.0.114", features = ["derive"] } lazy_static = "1.4.0" +serde = {version = "1.0.114", features = ["derive"]} serde_json = "1.0.55" toml = "0.5.6" diff --git a/crates/nu-cli/Cargo.toml b/crates/nu-cli/Cargo.toml index 2d27f6c95a..f2b06ca9b9 100644 --- a/crates/nu-cli/Cargo.toml +++ b/crates/nu-cli/Cargo.toml @@ -1,74 +1,74 @@ [package] -name = "nu-cli" -version = "0.16.0" authors = ["The Nu Project Contributors"] description = "CLI for nushell" edition = "2018" license = "MIT" +name = "nu-cli" +version = "0.16.1" [lib] doctest = false [dependencies] -nu-source = { version = "0.16.0", path = "../nu-source" } -nu-plugin = { version = "0.16.0", path = "../nu-plugin" } -nu-protocol = { version = "0.16.0", path = "../nu-protocol" } -nu-errors = { version = "0.16.0", path = "../nu-errors" } -nu-parser = { version = "0.16.0", path = "../nu-parser" } -nu-value-ext = { version = "0.16.0", path = "../nu-value-ext" } -nu-test-support = { version = "0.16.0", path = "../nu-test-support" } -nu-table = {version = "0.16.0", path = "../nu-table"} +nu-errors = {version = "0.16.1", path = "../nu-errors"} +nu-parser = {version = "0.16.1", path = "../nu-parser"} +nu-plugin = {version = "0.16.1", path = "../nu-plugin"} +nu-protocol = {version = "0.16.1", path = "../nu-protocol"} +nu-source = {version = "0.16.1", path = "../nu-source"} +nu-table = {version = "0.16.1", path = "../nu-table"} +nu-test-support = {version = "0.16.1", path = "../nu-test-support"} +nu-value-ext = {version = "0.16.1", path = "../nu-value-ext"} ansi_term = "0.12.1" app_dirs = "1.2.1" async-recursion = "0.3.1" async-trait = "0.1.36" -directories = "2.0.2" base64 = "0.12.3" -bigdecimal = { version = "0.1.2", features = ["serde"] } -bson = { version = "0.14.1", features = ["decimal128"] } +bigdecimal = {version = "0.1.2", features = ["serde"]} +bson = {version = "0.14.1", features = ["decimal128"]} byte-unit = "3.1.3" bytes = "0.5.5" calamine = "0.16" cfg-if = "0.1" -chrono = { version = "0.4.11", features = ["serde"] } +chrono = {version = "0.4.11", features = ["serde"]} clap = "2.33.1" +codespan-reporting = "0.9.5" csv = "1.1" ctrlc = "3.1.4" derive-new = "0.5.8" +directories = "2.0.2" dirs = "2.0.2" dunce = "1.0.1" eml-parser = "0.1.0" filesize = "0.2.0" -futures = { version = "0.3", features = ["compat", "io-compat"] } +futures = {version = "0.3", features = ["compat", "io-compat"]} futures-util = "0.3.5" futures_codec = "0.4" getset = "0.1.1" -git2 = { version = "0.13.6", default_features = false } +git2 = {version = "0.13.6", default_features = false} glob = "0.3.0" hex = "0.4" htmlescape = "0.3.1" ical = "0.6.*" ichwh = "0.3.4" -indexmap = { version = "1.4.0", features = ["serde-1"] } +indexmap = {version = "1.4.0", features = ["serde-1"]} itertools = "0.9.0" -codespan-reporting = "0.9.5" log = "0.4.8" meval = "0.2" natural = "0.5.0" -num-bigint = { version = "0.2.6", features = ["serde"] } +num-bigint = {version = "0.2.6", features = ["serde"]} num-traits = "0.2.11" parking_lot = "0.11.0" pin-utils = "0.1.0" pretty-hex = "0.1.1" pretty_env_logger = "0.4.0" -ptree = {version = "0.2" } +ptree = {version = "0.2"} query_interface = "0.3.5" rand = "0.7" regex = "1" roxmltree = "0.13.0" rustyline = "6.2.0" -serde = { version = "1.0.114", features = ["derive"] } +serde = {version = "1.0.114", features = ["derive"]} serde-hjson = "0.9.1" serde_bytes = "0.11.5" serde_ini = "0.2.0" @@ -80,30 +80,30 @@ shellexpand = "2.0.0" strip-ansi-escapes = "0.1.0" tempfile = "3.1.0" term = "0.5.2" -termcolor = "1.1.0" term_size = "0.3.2" +termcolor = "1.1.0" toml = "0.5.6" typetag = "0.1.5" umask = "1.0.0" unicode-xid = "0.2.1" -uuid_crate = { package = "uuid", version = "0.8.1", features = ["v4"] } +uuid_crate = {package = "uuid", version = "0.8.1", features = ["v4"]} which = "4.0.1" -trash = { version = "1.0.1", optional = true } -clipboard = { version = "0.5", optional = true } -starship = "0.43.0" -rayon = "1.3.1" +clipboard = {version = "0.5", optional = true} encoding_rs = "0.8.23" +rayon = "1.3.1" +starship = "0.43.0" +trash = {version = "1.0.1", optional = true} [target.'cfg(unix)'.dependencies] users = "0.10.0" [dependencies.rusqlite] -version = "0.23.1" features = ["bundled", "blob"] +version = "0.23.1" [build-dependencies] -nu-build = { version = "0.16.0", path = "../nu-build" } +nu-build = {version = "0.16.1", path = "../nu-build"} [dev-dependencies] quickcheck = "0.9" diff --git a/crates/nu-errors/Cargo.toml b/crates/nu-errors/Cargo.toml index 6952d2a424..18e8a1844a 100644 --- a/crates/nu-errors/Cargo.toml +++ b/crates/nu-errors/Cargo.toml @@ -1,31 +1,31 @@ [package] -name = "nu-errors" -version = "0.16.0" authors = ["The Nu Project Contributors"] -edition = "2018" description = "Core error subsystem for Nushell" +edition = "2018" license = "MIT" +name = "nu-errors" +version = "0.16.1" [lib] doctest = false [dependencies] -nu-source = { path = "../nu-source", version = "0.16.0" } +nu-source = {path = "../nu-source", version = "0.16.1"} ansi_term = "0.12.1" -bigdecimal = { version = "0.1.2", features = ["serde"] } +bigdecimal = {version = "0.1.2", features = ["serde"]} +codespan-reporting = {version = "0.9.5", features = ["serialization"]} derive-new = "0.5.8" -codespan-reporting = { version = "0.9.5", features = ["serialization"]} -num-bigint = { version = "0.2.6", features = ["serde"] } -num-traits = "0.2.12" -serde = { version = "1.0.114", features = ["derive"] } getset = "0.1.1" +num-bigint = {version = "0.2.6", features = ["serde"]} +num-traits = "0.2.12" +serde = {version = "1.0.114", features = ["derive"]} # implement conversions +glob = "0.3.0" +serde_json = "1.0.55" serde_yaml = "0.8" toml = "0.5.6" -serde_json = "1.0.55" -glob = "0.3.0" [build-dependencies] -nu-build = { version = "0.16.0", path = "../nu-build" } +nu-build = {version = "0.16.1", path = "../nu-build"} diff --git a/crates/nu-parser/Cargo.toml b/crates/nu-parser/Cargo.toml index 7afcbbf0c1..9eb72bf5db 100644 --- a/crates/nu-parser/Cargo.toml +++ b/crates/nu-parser/Cargo.toml @@ -1,28 +1,28 @@ [package] -name = "nu-parser" -version = "0.16.0" authors = ["The Nu Project Contributors"] -edition = "2018" description = "Nushell parser" +edition = "2018" license = "MIT" +name = "nu-parser" +version = "0.16.1" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] -num-bigint = { version = "0.2.6", features = ["serde"] } -bigdecimal = { version = "0.1.2", features = ["serde"] } -indexmap = { version = "1.4.0", features = ["serde-1"] } -parking_lot = "0.11.0" -num-traits = "0.2.12" -derive-new = "0.5.8" -serde = "1.0.114" +bigdecimal = {version = "0.1.2", features = ["serde"]} codespan-reporting = "0.9.5" +derive-new = "0.5.8" +indexmap = {version = "1.4.0", features = ["serde-1"]} log = "0.4.8" +num-bigint = {version = "0.2.6", features = ["serde"]} +num-traits = "0.2.12" +parking_lot = "0.11.0" +serde = "1.0.114" shellexpand = "2.0.0" -nu-source = { version = "0.16.0", path = "../nu-source" } -nu-protocol = { version = "0.16.0", path = "../nu-protocol" } -nu-errors = { version = "0.16.0", path = "../nu-errors" } +nu-errors = {version = "0.16.1", path = "../nu-errors"} +nu-protocol = {version = "0.16.1", path = "../nu-protocol"} +nu-source = {version = "0.16.1", path = "../nu-source"} [features] stable = [] diff --git a/crates/nu-plugin/Cargo.toml b/crates/nu-plugin/Cargo.toml index 6370059ce1..1b50281fb7 100644 --- a/crates/nu-plugin/Cargo.toml +++ b/crates/nu-plugin/Cargo.toml @@ -1,25 +1,25 @@ [package] -name = "nu-plugin" -version = "0.16.0" authors = ["The Nu Project Contributors"] -edition = "2018" description = "Nushell Plugin" +edition = "2018" license = "MIT" +name = "nu-plugin" +version = "0.16.1" [lib] doctest = false [dependencies] -nu-protocol = { path = "../nu-protocol", version = "0.16.0" } -nu-source = { path = "../nu-source", version = "0.16.0" } -nu-errors = { path = "../nu-errors", version = "0.16.0" } -nu-value-ext = { path = "../nu-value-ext", version = "0.16.0" } +nu-errors = {path = "../nu-errors", version = "0.16.1"} +nu-protocol = {path = "../nu-protocol", version = "0.16.1"} +nu-source = {path = "../nu-source", version = "0.16.1"} +nu-value-ext = {path = "../nu-value-ext", version = "0.16.1"} -indexmap = { version = "1.4.0", features = ["serde-1"] } -serde = { version = "1.0.114", features = ["derive"] } -num-bigint = { version = "0.2.6", features = ["serde"] } +bigdecimal = {version = "0.1.2", features = ["serde"]} +indexmap = {version = "1.4.0", features = ["serde-1"]} +num-bigint = {version = "0.2.6", features = ["serde"]} +serde = {version = "1.0.114", features = ["derive"]} serde_json = "1.0.55" -bigdecimal = { version = "0.1.2", features = ["serde"] } [build-dependencies] -nu-build = { version = "0.16.0", path = "../nu-build" } +nu-build = {version = "0.16.1", path = "../nu-build"} diff --git a/crates/nu-protocol/Cargo.toml b/crates/nu-protocol/Cargo.toml index d947d365a8..56a5bb43fa 100644 --- a/crates/nu-protocol/Cargo.toml +++ b/crates/nu-protocol/Cargo.toml @@ -1,40 +1,40 @@ [package] -name = "nu-protocol" -version = "0.16.0" authors = ["The Nu Project Contributors"] -edition = "2018" description = "Core values and protocols for Nushell" +edition = "2018" license = "MIT" +name = "nu-protocol" +version = "0.16.1" [lib] doctest = false [dependencies] -nu-source = { path = "../nu-source", version = "0.16.0" } -nu-errors = { path = "../nu-errors", version = "0.16.0" } +nu-errors = {path = "../nu-errors", version = "0.16.1"} +nu-source = {path = "../nu-source", version = "0.16.1"} -serde = { version = "1.0.114", features = ["derive"] } -indexmap = { version = "1.4.0", features = ["serde-1"] } -num-bigint = { version = "0.2.6", features = ["serde"] } -bigdecimal = { version = "0.1.2", features = ["serde"] } -chrono = { version = "0.4.11", features = ["serde"] } -num-traits = "0.2.12" -serde_bytes = "0.11.5" -getset = "0.1.1" -derive-new = "0.5.8" ansi_term = "0.12.1" -codespan-reporting = "0.9.5" -typetag = "0.1.5" -query_interface = "0.3.5" +bigdecimal = {version = "0.1.2", features = ["serde"]} byte-unit = "3.1.3" -natural = "0.5.0" -log = "0.4.8" +chrono = {version = "0.4.11", features = ["serde"]} +codespan-reporting = "0.9.5" +derive-new = "0.5.8" +getset = "0.1.1" +indexmap = {version = "1.4.0", features = ["serde-1"]} itertools = "0.9.0" +log = "0.4.8" +natural = "0.5.0" +num-bigint = {version = "0.2.6", features = ["serde"]} +num-traits = "0.2.12" +query_interface = "0.3.5" +serde = {version = "1.0.114", features = ["derive"]} +serde_bytes = "0.11.5" +typetag = "0.1.5" # implement conversions +serde_json = "1.0.55" serde_yaml = "0.8" toml = "0.5.6" -serde_json = "1.0.55" [build-dependencies] -nu-build = { version = "0.16.0", path = "../nu-build" } +nu-build = {version = "0.16.1", path = "../nu-build"} diff --git a/crates/nu-source/Cargo.toml b/crates/nu-source/Cargo.toml index 2a63636275..c0eaac00ec 100644 --- a/crates/nu-source/Cargo.toml +++ b/crates/nu-source/Cargo.toml @@ -1,21 +1,21 @@ [package] -name = "nu-source" -version = "0.16.0" authors = ["The Nu Project Contributors"] -edition = "2018" description = "A source string characterizer for Nushell" +edition = "2018" license = "MIT" +name = "nu-source" +version = "0.16.1" [lib] doctest = false [dependencies] -serde = { version = "1.0.114", features = ["derive"] } +codespan-reporting = "0.9.5" derive-new = "0.5.8" getset = "0.1.1" -codespan-reporting = "0.9.5" -termcolor = "1.1.0" pretty = "0.5.2" +serde = {version = "1.0.114", features = ["derive"]} +termcolor = "1.1.0" [build-dependencies] -nu-build = { version = "0.16.0", path = "../nu-build" } +nu-build = {version = "0.16.1", path = "../nu-build"} diff --git a/crates/nu-table/Cargo.toml b/crates/nu-table/Cargo.toml index c2d34d36c6..fabcaee6d0 100644 --- a/crates/nu-table/Cargo.toml +++ b/crates/nu-table/Cargo.toml @@ -1,10 +1,10 @@ [package] -name = "nu-table" -version = "0.16.0" authors = ["The Nu Project Contributors"] -edition = "2018" description = "Nushell table printing" +edition = "2018" license = "MIT" +name = "nu-table" +version = "0.16.1" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [[bin]] @@ -12,5 +12,5 @@ name = "table" path = "src/main.rs" [dependencies] +ansi_term = "0.12.1" unicode-width = "0.1.7" -ansi_term = "0.12.1" \ No newline at end of file diff --git a/crates/nu-test-support/Cargo.toml b/crates/nu-test-support/Cargo.toml index 36fe7a27f7..eb27f305da 100644 --- a/crates/nu-test-support/Cargo.toml +++ b/crates/nu-test-support/Cargo.toml @@ -1,25 +1,25 @@ [package] -name = "nu-test-support" -version = "0.16.0" authors = ["The Nu Project Contributors"] -edition = "2018" description = "A source string characterizer for Nushell" +edition = "2018" license = "MIT" +name = "nu-test-support" +version = "0.16.1" [lib] doctest = false [dependencies] -nu-parser = { path = "../nu-parser", version = "0.16.0" } -nu-source = { path = "../nu-source", version = "0.16.0" } -nu-protocol = { path = "../nu-protocol", version = "0.16.0" } +nu-parser = {path = "../nu-parser", version = "0.16.1"} +nu-protocol = {path = "../nu-protocol", version = "0.16.1"} +nu-source = {path = "../nu-source", version = "0.16.1"} directories = "2.0.2" dunce = "1.0.1" getset = "0.1.1" glob = "0.3.0" +indexmap = {version = "1.4.0", features = ["serde-1"]} tempfile = "3.1.0" -indexmap = { version = "1.4.0", features = ["serde-1"] } [build-dependencies] -nu-build = { version = "0.16.0", path = "../nu-build" } +nu-build = {version = "0.16.1", path = "../nu-build"} diff --git a/crates/nu-value-ext/Cargo.toml b/crates/nu-value-ext/Cargo.toml index 5ee6d76639..0312dedfe0 100644 --- a/crates/nu-value-ext/Cargo.toml +++ b/crates/nu-value-ext/Cargo.toml @@ -1,23 +1,23 @@ [package] -name = "nu-value-ext" -version = "0.16.0" authors = ["The Nu Project Contributors"] -edition = "2018" description = "Extension traits for values in Nushell" +edition = "2018" license = "MIT" +name = "nu-value-ext" +version = "0.16.1" [lib] doctest = false [dependencies] -nu-source = { path = "../nu-source", version = "0.16.0" } -nu-errors = { path = "../nu-errors", version = "0.16.0" } -nu-parser = { path = "../nu-parser", version = "0.16.0" } -nu-protocol = { path = "../nu-protocol", version = "0.16.0" } +nu-errors = {path = "../nu-errors", version = "0.16.1"} +nu-parser = {path = "../nu-parser", version = "0.16.1"} +nu-protocol = {path = "../nu-protocol", version = "0.16.1"} +nu-source = {path = "../nu-source", version = "0.16.1"} -num-traits = "0.2.12" +indexmap = {version = "1.4.0", features = ["serde-1"]} itertools = "0.9.0" -indexmap = { version = "1.4.0", features = ["serde-1"] } +num-traits = "0.2.12" [build-dependencies] -nu-build = { version = "0.16.0", path = "../nu-build" } +nu-build = {version = "0.16.1", path = "../nu-build"} diff --git a/crates/nu_plugin_binaryview/Cargo.toml b/crates/nu_plugin_binaryview/Cargo.toml index f837ec60a5..e534971cc1 100644 --- a/crates/nu_plugin_binaryview/Cargo.toml +++ b/crates/nu_plugin_binaryview/Cargo.toml @@ -1,25 +1,25 @@ [package] -name = "nu_plugin_binaryview" -version = "0.16.0" authors = ["The Nu Project Contributors"] -edition = "2018" description = "A binary viewer plugin for Nushell" +edition = "2018" license = "MIT" +name = "nu_plugin_binaryview" +version = "0.16.1" [lib] doctest = false [dependencies] ansi_term = "0.12.1" -crossterm = { version = "0.17.5" } -nu-plugin = { path = "../nu-plugin", version = "0.16.0" } -nu-protocol = { path = "../nu-protocol", version = "0.16.0" } -nu-source = { path = "../nu-source", version = "0.16.0" } -nu-errors = { path = "../nu-errors", version = "0.16.0" } -pretty-hex = "0.1.1" -image = { version = "0.22.4", default_features = false, features = ["png_codec", "jpeg"] } -rawkey = "0.1.2" +crossterm = {version = "0.17.5"} +image = {version = "0.22.4", default_features = false, features = ["png_codec", "jpeg"]} neso = "0.5.0" +nu-errors = {path = "../nu-errors", version = "0.16.1"} +nu-plugin = {path = "../nu-plugin", version = "0.16.1"} +nu-protocol = {path = "../nu-protocol", version = "0.16.1"} +nu-source = {path = "../nu-source", version = "0.16.1"} +pretty-hex = "0.1.1" +rawkey = "0.1.2" [build-dependencies] -nu-build = { version = "0.16.0", path = "../nu-build" } +nu-build = {version = "0.16.1", path = "../nu-build"} diff --git a/crates/nu_plugin_fetch/Cargo.toml b/crates/nu_plugin_fetch/Cargo.toml index 2777f5f46c..5b27d0c27b 100644 --- a/crates/nu_plugin_fetch/Cargo.toml +++ b/crates/nu_plugin_fetch/Cargo.toml @@ -1,23 +1,23 @@ [package] -name = "nu_plugin_fetch" -version = "0.16.0" authors = ["The Nu Project Contributors"] -edition = "2018" description = "A URL fetch plugin for Nushell" +edition = "2018" license = "MIT" +name = "nu_plugin_fetch" +version = "0.16.1" [lib] doctest = false [dependencies] -nu-plugin = { path = "../nu-plugin", version = "0.16.0" } -nu-protocol = { path = "../nu-protocol", version = "0.16.0" } -nu-source = { path = "../nu-source", version = "0.16.0" } -nu-errors = { path = "../nu-errors", version = "0.16.0" } -futures = { version = "0.3", features = ["compat", "io-compat"] } +base64 = "0.12.3" +futures = {version = "0.3", features = ["compat", "io-compat"]} +nu-errors = {path = "../nu-errors", version = "0.16.1"} +nu-plugin = {path = "../nu-plugin", version = "0.16.1"} +nu-protocol = {path = "../nu-protocol", version = "0.16.1"} +nu-source = {path = "../nu-source", version = "0.16.1"} surf = "1.0.3" url = "2.1.1" -base64 = "0.12.3" [build-dependencies] -nu-build = { version = "0.16.0", path = "../nu-build" } +nu-build = {version = "0.16.1", path = "../nu-build"} diff --git a/crates/nu_plugin_inc/Cargo.toml b/crates/nu_plugin_inc/Cargo.toml index e14929fe3d..2cc1bb0110 100644 --- a/crates/nu_plugin_inc/Cargo.toml +++ b/crates/nu_plugin_inc/Cargo.toml @@ -1,22 +1,22 @@ [package] -name = "nu_plugin_inc" -version = "0.16.0" authors = ["The Nu Project Contributors"] -edition = "2018" description = "A version incrementer plugin for Nushell" +edition = "2018" license = "MIT" +name = "nu_plugin_inc" +version = "0.16.1" [lib] doctest = false [dependencies] -nu-plugin = { path = "../nu-plugin", version = "0.16.0" } -nu-protocol = { path = "../nu-protocol", version = "0.16.0" } -nu-source = { path = "../nu-source", version = "0.16.0" } -nu-errors = { path = "../nu-errors", version = "0.16.0" } -nu-value-ext = { path = "../nu-value-ext", version = "0.16.0" } +nu-errors = {path = "../nu-errors", version = "0.16.1"} +nu-plugin = {path = "../nu-plugin", version = "0.16.1"} +nu-protocol = {path = "../nu-protocol", version = "0.16.1"} +nu-source = {path = "../nu-source", version = "0.16.1"} +nu-value-ext = {path = "../nu-value-ext", version = "0.16.1"} semver = "0.10.0" [build-dependencies] -nu-build = { version = "0.16.0", path = "../nu-build" } +nu-build = {version = "0.16.1", path = "../nu-build"} diff --git a/crates/nu_plugin_match/Cargo.toml b/crates/nu_plugin_match/Cargo.toml index 313bcb558a..140715d8bb 100644 --- a/crates/nu_plugin_match/Cargo.toml +++ b/crates/nu_plugin_match/Cargo.toml @@ -1,21 +1,21 @@ [package] -name = "nu_plugin_match" -version = "0.16.0" authors = ["The Nu Project Contributors"] -edition = "2018" description = "A regex match plugin for Nushell" +edition = "2018" license = "MIT" +name = "nu_plugin_match" +version = "0.16.1" [lib] doctest = false [dependencies] -nu-plugin = { path = "../nu-plugin", version = "0.16.0" } -nu-protocol = { path = "../nu-protocol", version = "0.16.0" } -nu-source = { path = "../nu-source", version = "0.16.0" } -nu-errors = { path = "../nu-errors", version = "0.16.0" } -futures = { version = "0.3", features = ["compat", "io-compat"] } +futures = {version = "0.3", features = ["compat", "io-compat"]} +nu-errors = {path = "../nu-errors", version = "0.16.1"} +nu-plugin = {path = "../nu-plugin", version = "0.16.1"} +nu-protocol = {path = "../nu-protocol", version = "0.16.1"} +nu-source = {path = "../nu-source", version = "0.16.1"} regex = "1" [build-dependencies] -nu-build = { version = "0.16.0", path = "../nu-build" } +nu-build = {version = "0.16.1", path = "../nu-build"} diff --git a/crates/nu_plugin_post/Cargo.toml b/crates/nu_plugin_post/Cargo.toml index 9445d2c7f7..3da8880cb4 100644 --- a/crates/nu_plugin_post/Cargo.toml +++ b/crates/nu_plugin_post/Cargo.toml @@ -1,25 +1,25 @@ [package] -name = "nu_plugin_post" -version = "0.16.0" authors = ["The Nu Project Contributors"] -edition = "2018" description = "An HTTP post plugin for Nushell" +edition = "2018" license = "MIT" +name = "nu_plugin_post" +version = "0.16.1" [lib] doctest = false [dependencies] -nu-plugin = { path = "../nu-plugin", version = "0.16.0" } -nu-protocol = { path = "../nu-protocol", version = "0.16.0" } -nu-source = { path = "../nu-source", version = "0.16.0" } -nu-errors = { path = "../nu-errors", version = "0.16.0" } -futures = { version = "0.3", features = ["compat", "io-compat"] } +base64 = "0.12.3" +futures = {version = "0.3", features = ["compat", "io-compat"]} +nu-errors = {path = "../nu-errors", version = "0.16.1"} +nu-plugin = {path = "../nu-plugin", version = "0.16.1"} +nu-protocol = {path = "../nu-protocol", version = "0.16.1"} +nu-source = {path = "../nu-source", version = "0.16.1"} +num-traits = "0.2.12" +serde_json = "1.0.55" surf = "1.0.3" url = "2.1.1" -serde_json = "1.0.55" -base64 = "0.12.3" -num-traits = "0.2.12" [build-dependencies] -nu-build = { version = "0.16.0", path = "../nu-build" } +nu-build = {version = "0.16.1", path = "../nu-build"} diff --git a/crates/nu_plugin_ps/Cargo.toml b/crates/nu_plugin_ps/Cargo.toml index 32cec6b2af..a9f15222d5 100644 --- a/crates/nu_plugin_ps/Cargo.toml +++ b/crates/nu_plugin_ps/Cargo.toml @@ -1,27 +1,27 @@ [package] -name = "nu_plugin_ps" -version = "0.16.0" authors = ["The Nu Project Contributors"] -edition = "2018" description = "A process list plugin for Nushell" +edition = "2018" license = "MIT" +name = "nu_plugin_ps" +version = "0.16.1" [lib] doctest = false [dependencies] -nu-plugin = { path = "../nu-plugin", version = "0.16.0" } -nu-protocol = { path = "../nu-protocol", version = "0.16.0" } -nu-source = { path = "../nu-source", version = "0.16.0" } -nu-errors = { path = "../nu-errors", version = "0.16.0" } +nu-errors = {path = "../nu-errors", version = "0.16.1"} +nu-plugin = {path = "../nu-plugin", version = "0.16.1"} +nu-protocol = {path = "../nu-protocol", version = "0.16.1"} +nu-source = {path = "../nu-source", version = "0.16.1"} -futures = { version = "0.3", features = ["compat", "io-compat"] } +futures = {version = "0.3", features = ["compat", "io-compat"]} futures-timer = "3.0.2" [dependencies.heim] -version = "0.1.0-beta.3" default-features = false features = ["process"] +version = "0.1.0-beta.3" [build-dependencies] -nu-build = { version = "0.16.0", path = "../nu-build" } +nu-build = {version = "0.16.1", path = "../nu-build"} diff --git a/crates/nu_plugin_start/Cargo.toml b/crates/nu_plugin_start/Cargo.toml index abd140ff1e..54490704c8 100644 --- a/crates/nu_plugin_start/Cargo.toml +++ b/crates/nu_plugin_start/Cargo.toml @@ -1,24 +1,24 @@ [package] -name = "nu_plugin_start" -version = "0.16.0" authors = ["The Nu Project Contributors"] -edition = "2018" description = "A plugin to open files/URLs directly from Nushell" +edition = "2018" license = "MIT" +name = "nu_plugin_start" +version = "0.16.1" [lib] doctest = false [dependencies] -nu-plugin = { path = "../nu-plugin", version = "0.16.0" } -nu-protocol = { path = "../nu-protocol", version = "0.16.0" } -nu-source = { path = "../nu-source", version = "0.16.0" } -nu-errors = { path = "../nu-errors", version = "0.16.0" } -url = "2.1.1" -open = "1.4.0" glob = "0.3.0" +nu-errors = {path = "../nu-errors", version = "0.16.1"} +nu-plugin = {path = "../nu-plugin", version = "0.16.1"} +nu-protocol = {path = "../nu-protocol", version = "0.16.1"} +nu-source = {path = "../nu-source", version = "0.16.1"} +open = "1.4.0" +url = "2.1.1" [build-dependencies] -nu-build = { version = "0.16.0", path = "../nu-build" } -nu-errors = { version = "0.16.0", path = "../nu-errors" } -nu-source = { version = "0.16.0", path = "../nu-source" } \ No newline at end of file +nu-build = {version = "0.16.1", path = "../nu-build"} +nu-errors = {version = "0.16.1", path = "../nu-errors"} +nu-source = {version = "0.16.1", path = "../nu-source"} diff --git a/crates/nu_plugin_sys/Cargo.toml b/crates/nu_plugin_sys/Cargo.toml index a42f166ae9..75ddb012d6 100644 --- a/crates/nu_plugin_sys/Cargo.toml +++ b/crates/nu_plugin_sys/Cargo.toml @@ -1,29 +1,29 @@ [package] -name = "nu_plugin_sys" -version = "0.16.0" authors = ["The Nu Project Contributors"] -edition = "2018" description = "A system info plugin for Nushell" +edition = "2018" license = "MIT" +name = "nu_plugin_sys" +version = "0.16.1" [lib] doctest = false [dependencies] -nu-plugin = { path = "../nu-plugin", version = "0.16.0" } -nu-protocol = { path = "../nu-protocol", version = "0.16.0" } -nu-source = { path = "../nu-source", version = "0.16.0" } -nu-errors = { path = "../nu-errors", version = "0.16.0" } +nu-errors = {path = "../nu-errors", version = "0.16.1"} +nu-plugin = {path = "../nu-plugin", version = "0.16.1"} +nu-protocol = {path = "../nu-protocol", version = "0.16.1"} +nu-source = {path = "../nu-source", version = "0.16.1"} -futures = { version = "0.3", features = ["compat", "io-compat"] } battery = "0.7.5" +futures = {version = "0.3", features = ["compat", "io-compat"]} futures-util = "0.3.5" [dependencies.heim] -version = "0.1.0-beta.3" default-features = false +version = "0.1.0-beta.3" features = ["host", "cpu", "memory", "disk", "net", "sensors"] [build-dependencies] -nu-build = { version = "0.16.0", path = "../nu-build" } +nu-build = {version = "0.16.1", path = "../nu-build"} diff --git a/crates/nu_plugin_textview/Cargo.toml b/crates/nu_plugin_textview/Cargo.toml index 904ef19193..9d59a17e2a 100644 --- a/crates/nu_plugin_textview/Cargo.toml +++ b/crates/nu_plugin_textview/Cargo.toml @@ -1,27 +1,27 @@ [package] -name = "nu_plugin_textview" -version = "0.16.0" authors = ["The Nu Project Contributors"] -edition = "2018" description = "Text viewer plugin for Nushell" +edition = "2018" license = "MIT" +name = "nu_plugin_textview" +version = "0.16.1" [lib] doctest = false [dependencies] -nu-plugin = { path = "../nu-plugin", version = "0.16.0" } -nu-protocol = { path = "../nu-protocol", version = "0.16.0" } -nu-source = { path = "../nu-source", version = "0.16.0" } -nu-errors = { path = "../nu-errors", version = "0.16.0" } -nu-cli = { path = "../nu-cli", version = "0.16.0" } +nu-cli = {path = "../nu-cli", version = "0.16.1"} +nu-errors = {path = "../nu-errors", version = "0.16.1"} +nu-plugin = {path = "../nu-plugin", version = "0.16.1"} +nu-protocol = {path = "../nu-protocol", version = "0.16.1"} +nu-source = {path = "../nu-source", version = "0.16.1"} -crossterm = "0.17.5" -syntect = { version = "4.2", default-features = false, features = ["default-fancy"]} ansi_term = "0.12.1" -url = "2.1.1" bat = "0.15.4" +crossterm = "0.17.5" +syntect = {version = "4.2", default-features = false, features = ["default-fancy"]} term_size = "0.3.2" +url = "2.1.1" [build-dependencies] -nu-build = { version = "0.16.0", path = "../nu-build" } +nu-build = {version = "0.16.1", path = "../nu-build"} diff --git a/crates/nu_plugin_tree/Cargo.toml b/crates/nu_plugin_tree/Cargo.toml index f26d5b75a3..f0e995b661 100644 --- a/crates/nu_plugin_tree/Cargo.toml +++ b/crates/nu_plugin_tree/Cargo.toml @@ -1,21 +1,21 @@ [package] -name = "nu_plugin_tree" -version = "0.16.0" authors = ["The Nu Project Contributors"] -edition = "2018" description = "Tree viewer plugin for Nushell" +edition = "2018" license = "MIT" +name = "nu_plugin_tree" +version = "0.16.1" [lib] doctest = false [dependencies] -nu-plugin = { path = "../nu-plugin", version = "0.16.0" } -nu-protocol = { path = "../nu-protocol", version = "0.16.0" } -nu-source = { path = "../nu-source", version = "0.16.0" } -nu-errors = { path = "../nu-errors", version = "0.16.0" } -ptree = {version = "0.2" } derive-new = "0.5.8" +nu-errors = {path = "../nu-errors", version = "0.16.1"} +nu-plugin = {path = "../nu-plugin", version = "0.16.1"} +nu-protocol = {path = "../nu-protocol", version = "0.16.1"} +nu-source = {path = "../nu-source", version = "0.16.1"} +ptree = {version = "0.2"} [build-dependencies] -nu-build = { version = "0.16.0", path = "../nu-build" } +nu-build = {version = "0.16.1", path = "../nu-build"} diff --git a/docs/commands/to-toml.md b/docs/commands/to-toml.md index 92126e70c4..579bbdbcca 100644 --- a/docs/commands/to-toml.md +++ b/docs/commands/to-toml.md @@ -88,7 +88,7 @@ version = "0.4.6" [dependencies.cursive] default-features = false features = ["pancurses-backend"] -version = "0.16.0" +version = "0.16.1" [dependencies.futures-preview] features = ["compat", "io-compat"]