Bump to 0.43 (#4264)

This commit is contained in:
JT
2022-01-18 12:06:12 -05:00
committed by GitHub
parent d5d61d14b3
commit 49e8af8ea5
38 changed files with 258 additions and 258 deletions

View File

@ -9,7 +9,7 @@ description = "Library for ANSI terminal colors and styles (bold, underline)"
edition = "2018"
license = "MIT"
name = "nu-ansi-term"
version = "0.42.0"
version = "0.43.0"
[lib]
doctest = false

View File

@ -4,24 +4,24 @@ description = "CLI for nushell"
edition = "2018"
license = "MIT"
name = "nu-cli"
version = "0.42.0"
version = "0.43.0"
build = "build.rs"
[lib]
doctest = false
[dependencies]
nu-completion = { version = "0.42.0", path="../nu-completion" }
nu-command = { version = "0.42.0", path="../nu-command" }
nu-data = { version = "0.42.0", path="../nu-data" }
nu-engine = { version = "0.42.0", path="../nu-engine" }
nu-errors = { version = "0.42.0", path="../nu-errors" }
nu-parser = { version = "0.42.0", path="../nu-parser" }
nu-protocol = { version = "0.42.0", path="../nu-protocol" }
nu-source = { version = "0.42.0", path="../nu-source" }
nu-stream = { version = "0.42.0", path="../nu-stream" }
nu-ansi-term = { version = "0.42.0", path="../nu-ansi-term" }
nu-path = { version = "0.42.0", path="../nu-path" }
nu-completion = { version = "0.43.0", path="../nu-completion" }
nu-command = { version = "0.43.0", path="../nu-command" }
nu-data = { version = "0.43.0", path="../nu-data" }
nu-engine = { version = "0.43.0", path="../nu-engine" }
nu-errors = { version = "0.43.0", path="../nu-errors" }
nu-parser = { version = "0.43.0", path="../nu-parser" }
nu-protocol = { version = "0.43.0", path="../nu-protocol" }
nu-source = { version = "0.43.0", path="../nu-source" }
nu-stream = { version = "0.43.0", path="../nu-stream" }
nu-ansi-term = { version = "0.43.0", path="../nu-ansi-term" }
nu-path = { version = "0.43.0", path="../nu-path" }
indexmap ="1.6.1"
log = "0.4.14"

View File

@ -5,28 +5,28 @@ description = "Commands for Nushell"
edition = "2018"
license = "MIT"
name = "nu-command"
version = "0.42.0"
version = "0.43.0"
[lib]
doctest = false
[dependencies]
nu-data = { version = "0.42.0", path="../nu-data" }
nu-engine = { version = "0.42.0", path="../nu-engine" }
nu-errors = { version = "0.42.0", path="../nu-errors" }
nu-json = { version = "0.42.0", path="../nu-json" }
nu-path = { version = "0.42.0", path="../nu-path" }
nu-parser = { version = "0.42.0", path="../nu-parser" }
nu-plugin = { version = "0.42.0", path="../nu-plugin" }
nu-protocol = { version = "0.42.0", path="../nu-protocol" }
nu-serde = { version = "0.42.0", path="../nu-serde" }
nu-source = { version = "0.42.0", path="../nu-source" }
nu-stream = { version = "0.42.0", path="../nu-stream" }
nu-table = { version = "0.42.0", path="../nu-table" }
nu-test-support = { version = "0.42.0", path="../nu-test-support" }
nu-value-ext = { version = "0.42.0", path="../nu-value-ext" }
nu-ansi-term = { version = "0.42.0", path="../nu-ansi-term" }
nu-pretty-hex = { version = "0.42.0", path="../nu-pretty-hex" }
nu-data = { version = "0.43.0", path="../nu-data" }
nu-engine = { version = "0.43.0", path="../nu-engine" }
nu-errors = { version = "0.43.0", path="../nu-errors" }
nu-json = { version = "0.43.0", path="../nu-json" }
nu-path = { version = "0.43.0", path="../nu-path" }
nu-parser = { version = "0.43.0", path="../nu-parser" }
nu-plugin = { version = "0.43.0", path="../nu-plugin" }
nu-protocol = { version = "0.43.0", path="../nu-protocol" }
nu-serde = { version = "0.43.0", path="../nu-serde" }
nu-source = { version = "0.43.0", path="../nu-source" }
nu-stream = { version = "0.43.0", path="../nu-stream" }
nu-table = { version = "0.43.0", path="../nu-table" }
nu-test-support = { version = "0.43.0", path="../nu-test-support" }
nu-value-ext = { version = "0.43.0", path="../nu-value-ext" }
nu-ansi-term = { version = "0.43.0", path="../nu-ansi-term" }
nu-pretty-hex = { version = "0.43.0", path="../nu-pretty-hex" }
url = "2.2.1"
mime = "0.3.16"

View File

@ -4,19 +4,19 @@ description = "Completions for nushell"
edition = "2018"
license = "MIT"
name = "nu-completion"
version = "0.42.0"
version = "0.43.0"
[lib]
doctest = false
[dependencies]
nu-engine = { version = "0.42.0", path="../nu-engine" }
nu-data = { version = "0.42.0", path="../nu-data" }
nu-parser = { version = "0.42.0", path="../nu-parser" }
nu-path = { version = "0.42.0", path="../nu-path" }
nu-protocol = { version = "0.42.0", path="../nu-protocol" }
nu-source = { version = "0.42.0", path="../nu-source" }
nu-test-support = { version = "0.42.0", path="../nu-test-support" }
nu-engine = { version = "0.43.0", path="../nu-engine" }
nu-data = { version = "0.43.0", path="../nu-data" }
nu-parser = { version = "0.43.0", path="../nu-parser" }
nu-path = { version = "0.43.0", path="../nu-path" }
nu-protocol = { version = "0.43.0", path="../nu-protocol" }
nu-source = { version = "0.43.0", path="../nu-source" }
nu-test-support = { version = "0.43.0", path="../nu-test-support" }
indexmap = { version="1.6.1", features=["serde-1"] }
[target.'cfg(not(target_arch = "wasm32"))'.dependencies]

View File

@ -4,7 +4,7 @@ description = "Data for Nushell"
edition = "2018"
license = "MIT"
name = "nu-data"
version = "0.42.0"
version = "0.43.0"
[lib]
doctest = false
@ -27,14 +27,14 @@ sha2 = "0.9.3"
sys-locale = "0.1.0"
toml = "0.5.8"
nu-errors = { version = "0.42.0", path="../nu-errors" }
nu-path = { version = "0.42.0", path="../nu-path" }
nu-protocol = { version = "0.42.0", path="../nu-protocol" }
nu-source = { version = "0.42.0", path="../nu-source" }
nu-table = { version = "0.42.0", path="../nu-table" }
nu-test-support = { version = "0.42.0", path="../nu-test-support" }
nu-value-ext = { version = "0.42.0", path="../nu-value-ext" }
nu-ansi-term = { version = "0.42.0", path="../nu-ansi-term" }
nu-errors = { version = "0.43.0", path="../nu-errors" }
nu-path = { version = "0.43.0", path="../nu-path" }
nu-protocol = { version = "0.43.0", path="../nu-protocol" }
nu-source = { version = "0.43.0", path="../nu-source" }
nu-table = { version = "0.43.0", path="../nu-table" }
nu-test-support = { version = "0.43.0", path="../nu-test-support" }
nu-value-ext = { version = "0.43.0", path="../nu-value-ext" }
nu-ansi-term = { version = "0.43.0", path="../nu-ansi-term" }
[features]
dataframe = ["nu-protocol/dataframe"]

View File

@ -4,20 +4,20 @@ description = "Core commands for nushell"
edition = "2018"
license = "MIT"
name = "nu-engine"
version = "0.42.0"
version = "0.43.0"
[dependencies]
nu-data = { version = "0.42.0", path="../nu-data" }
nu-errors = { version = "0.42.0", path="../nu-errors" }
nu-parser = { version = "0.42.0", path="../nu-parser" }
nu-plugin = { version = "0.42.0", path="../nu-plugin" }
nu-protocol = { version = "0.42.0", path="../nu-protocol" }
nu-source = { version = "0.42.0", path="../nu-source" }
nu-stream = { version = "0.42.0", path="../nu-stream" }
nu-value-ext = { version = "0.42.0", path="../nu-value-ext" }
nu-ansi-term = { version = "0.42.0", path="../nu-ansi-term" }
nu-test-support = { version = "0.42.0", path="../nu-test-support" }
nu-path = { version = "0.42.0", path="../nu-path" }
nu-data = { version = "0.43.0", path="../nu-data" }
nu-errors = { version = "0.43.0", path="../nu-errors" }
nu-parser = { version = "0.43.0", path="../nu-parser" }
nu-plugin = { version = "0.43.0", path="../nu-plugin" }
nu-protocol = { version = "0.43.0", path="../nu-protocol" }
nu-source = { version = "0.43.0", path="../nu-source" }
nu-stream = { version = "0.43.0", path="../nu-stream" }
nu-value-ext = { version = "0.43.0", path="../nu-value-ext" }
nu-ansi-term = { version = "0.43.0", path="../nu-ansi-term" }
nu-test-support = { version = "0.43.0", path="../nu-test-support" }
nu-path = { version = "0.43.0", path="../nu-path" }
trash = { version = "2.0.2", optional = true }
which = { version="4.0.2", optional=true }
@ -50,7 +50,7 @@ umask = "1.0.0"
users = "0.11.0"
[dev-dependencies]
nu-test-support = { version = "0.42.0", path="../nu-test-support" }
nu-test-support = { version = "0.43.0", path="../nu-test-support" }
hamcrest2 = "0.3.0"
[features]

View File

@ -4,14 +4,14 @@ description = "Core error subsystem for Nushell"
edition = "2018"
license = "MIT"
name = "nu-errors"
version = "0.42.0"
version = "0.43.0"
[lib]
doctest = false
[dependencies]
nu-source = { path="../nu-source", version = "0.42.0" }
nu-ansi-term = { version = "0.42.0", path="../nu-ansi-term" }
nu-source = { path="../nu-source", version = "0.43.0" }
nu-ansi-term = { version = "0.43.0", path="../nu-ansi-term" }
bigdecimal = { package = "bigdecimal", version = "0.3.0", features = ["serde"] }
codespan-reporting = { version="0.11.0", features=["serialization"] }

View File

@ -4,7 +4,7 @@ description = "Fork of serde-hjson"
edition = "2018"
license = "MIT"
name = "nu-json"
version = "0.42.0"
version = "0.43.0"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
@ -20,6 +20,6 @@ lazy_static = "1"
linked-hash-map = { version="0.5", optional=true }
[dev-dependencies]
nu-path = { version = "0.42.0", path="../nu-path" }
nu-test-support = { version = "0.42.0", path="../nu-test-support" }
nu-path = { version = "0.43.0", path="../nu-path" }
nu-test-support = { version = "0.43.0", path="../nu-test-support" }
serde_json = "1.0.39"

View File

@ -4,7 +4,7 @@ description = "Nushell parser"
edition = "2018"
license = "MIT"
name = "nu-parser"
version = "0.42.0"
version = "0.43.0"
[dependencies]
bigdecimal = { package = "bigdecimal", version = "0.3.0", features = ["serde"] }
@ -15,12 +15,12 @@ num-bigint = { version="0.4.3", features=["serde"] }
itertools = "0.10.0"
smart-default = "0.6.0"
nu-errors = { version = "0.42.0", path="../nu-errors" }
nu-data = { version = "0.42.0", path="../nu-data" }
nu-path = { version = "0.42.0", path="../nu-path" }
nu-protocol = { version = "0.42.0", path="../nu-protocol" }
nu-source = { version = "0.42.0", path="../nu-source" }
nu-test-support = { version = "0.42.0", path="../nu-test-support" }
nu-errors = { version = "0.43.0", path="../nu-errors" }
nu-data = { version = "0.43.0", path="../nu-data" }
nu-path = { version = "0.43.0", path="../nu-path" }
nu-protocol = { version = "0.43.0", path="../nu-protocol" }
nu-source = { version = "0.43.0", path="../nu-source" }
nu-test-support = { version = "0.43.0", path="../nu-test-support" }
[features]
stable = []

View File

@ -4,7 +4,7 @@ description = "Path handling library for Nushell"
edition = "2018"
license = "MIT"
name = "nu-path"
version = "0.42.0"
version = "0.43.0"
[dependencies]
dirs-next = "2.0.0"

View File

@ -4,17 +4,17 @@ description = "Nushell Plugin"
edition = "2018"
license = "MIT"
name = "nu-plugin"
version = "0.42.0"
version = "0.43.0"
[lib]
doctest = false
[dependencies]
nu-errors = { path="../nu-errors", version = "0.42.0" }
nu-protocol = { path="../nu-protocol", version = "0.42.0" }
nu-source = { path="../nu-source", version = "0.42.0" }
nu-test-support = { path="../nu-test-support", version = "0.42.0" }
nu-value-ext = { path="../nu-value-ext", version = "0.42.0" }
nu-errors = { path="../nu-errors", version = "0.43.0" }
nu-protocol = { path="../nu-protocol", version = "0.43.0" }
nu-source = { path="../nu-source", version = "0.43.0" }
nu-test-support = { path="../nu-test-support", version = "0.43.0" }
nu-value-ext = { path="../nu-value-ext", version = "0.43.0" }
indexmap = { version="1.6.1", features=["serde-1"] }
serde = { version="1.0", features=["derive"] }
serde_json = "1.0"

View File

@ -4,7 +4,7 @@ description = "Pretty hex dump of bytes slice in the common style."
edition = "2018"
license = "MIT"
name = "nu-pretty-hex"
version = "0.42.0"
version = "0.43.0"
[lib]
doctest = false
@ -16,7 +16,7 @@ name = "nu_pretty_hex"
path = "src/main.rs"
[dependencies]
nu-ansi-term = { path="../nu-ansi-term", version = "0.42.0" }
nu-ansi-term = { path="../nu-ansi-term", version = "0.43.0" }
rand = "0.8.3"
[dev-dependencies]

View File

@ -4,7 +4,7 @@ description = "Core values and protocols for Nushell"
edition = "2018"
license = "MIT"
name = "nu-protocol"
version = "0.42.0"
version = "0.43.0"
[lib]
doctest = false
@ -18,8 +18,8 @@ derive-new = "0.5.8"
getset = "0.1.1"
indexmap = { version="1.6.1", features=["serde-1"] }
log = "0.4.14"
nu-errors = { path="../nu-errors", version = "0.42.0" }
nu-source = { path="../nu-source", version = "0.42.0" }
nu-errors = { path="../nu-errors", version = "0.43.0" }
nu-source = { path="../nu-source", version = "0.43.0" }
num-bigint = { version = "0.4.3", features = ["serde"] }
num-integer = "0.1.44"
num-traits = "0.2.14"

View File

@ -1,6 +1,6 @@
[package]
name = "nu-serde"
version = "0.42.0"
version = "0.43.0"
edition = "2018"
authors = ["The Nu Project Contributors"]
description = "Turn any value into a nu-protocol::Value with serde"
@ -10,8 +10,8 @@ documentation = "https://docs.rs/nu-serde"
[dependencies]
bigdecimal = { package = "bigdecimal", version = "0.3.0", features = ["serde"] }
nu-protocol = { version = "0.42.0", path = "../nu-protocol" }
nu-source = { version = "0.42.0", path = "../nu-source" }
nu-protocol = { version = "0.43.0", path = "../nu-protocol" }
nu-source = { version = "0.43.0", path = "../nu-source" }
serde = "1"
thiserror = "1"

View File

@ -4,7 +4,7 @@ description = "A source string characterizer for Nushell"
edition = "2018"
license = "MIT"
name = "nu-source"
version = "0.42.0"
version = "0.43.0"
[lib]
doctest = false

View File

@ -4,12 +4,12 @@ description = "Nushell stream"
edition = "2018"
license = "MIT"
name = "nu-stream"
version = "0.42.0"
version = "0.43.0"
[dependencies]
nu-errors = { version = "0.42.0", path="../nu-errors" }
nu-protocol = { version = "0.42.0", path="../nu-protocol" }
nu-source = { version = "0.42.0", path="../nu-source" }
nu-errors = { version = "0.43.0", path="../nu-errors" }
nu-protocol = { version = "0.43.0", path="../nu-protocol" }
nu-source = { version = "0.43.0", path="../nu-source" }
[features]
stable = []

View File

@ -4,7 +4,7 @@ description = "Nushell table printing"
edition = "2018"
license = "MIT"
name = "nu-table"
version = "0.42.0"
version = "0.43.0"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[[bin]]
@ -13,7 +13,7 @@ path = "src/main.rs"
[dependencies]
atty = "0.2.14"
nu-ansi-term = { version = "0.42.0", path="../nu-ansi-term" }
nu-ansi-term = { version = "0.43.0", path="../nu-ansi-term" }
regex = "1.4"
strip-ansi-escapes = "0.1.1"

View File

@ -4,16 +4,16 @@ description = "Support for writing Nushell tests"
edition = "2018"
license = "MIT"
name = "nu-test-support"
version = "0.42.0"
version = "0.43.0"
[lib]
doctest = false
[dependencies]
nu-errors = { version = "0.42.0", path="../nu-errors" }
nu-path = { version = "0.42.0", path="../nu-path" }
nu-protocol = { path="../nu-protocol", version = "0.42.0" }
nu-source = { path="../nu-source", version = "0.42.0" }
nu-errors = { version = "0.43.0", path="../nu-errors" }
nu-path = { version = "0.43.0", path="../nu-path" }
nu-protocol = { path="../nu-protocol", version = "0.43.0" }
nu-source = { path="../nu-source", version = "0.43.0" }
bigdecimal = { package = "bigdecimal", version = "0.3.0", features = ["serde"] }
chrono = "0.4.19"

View File

@ -4,15 +4,15 @@ description = "Extension traits for values in Nushell"
edition = "2018"
license = "MIT"
name = "nu-value-ext"
version = "0.42.0"
version = "0.43.0"
[lib]
doctest = false
[dependencies]
nu-errors = { path="../nu-errors", version = "0.42.0" }
nu-protocol = { path="../nu-protocol", version = "0.42.0" }
nu-source = { path="../nu-source", version = "0.42.0" }
nu-errors = { path="../nu-errors", version = "0.43.0" }
nu-protocol = { path="../nu-protocol", version = "0.43.0" }
nu-source = { path="../nu-source", version = "0.43.0" }
indexmap = { version="1.6.1", features=["serde-1"] }
itertools = "0.10.0"

View File

@ -4,7 +4,7 @@ description = "A binary viewer plugin for Nushell"
edition = "2018"
license = "MIT"
name = "nu_plugin_binaryview"
version = "0.42.0"
version = "0.43.0"
[lib]
doctest = false
@ -13,12 +13,12 @@ doctest = false
crossterm = "0.19"
image = { version = "0.23.14", default_features = false, features = ["png", "jpeg"] }
neso = "0.5.0"
nu-errors = { path="../nu-errors", version = "0.42.0" }
nu-plugin = { path="../nu-plugin", version = "0.42.0" }
nu-protocol = { path="../nu-protocol", version = "0.42.0" }
nu-source = { path="../nu-source", version = "0.42.0" }
nu-ansi-term = { version = "0.42.0", path="../nu-ansi-term" }
nu-pretty-hex = { version = "0.42.0", path="../nu-pretty-hex" }
nu-errors = { path="../nu-errors", version = "0.43.0" }
nu-plugin = { path="../nu-plugin", version = "0.43.0" }
nu-protocol = { path="../nu-protocol", version = "0.43.0" }
nu-source = { path="../nu-source", version = "0.43.0" }
nu-ansi-term = { version = "0.43.0", path="../nu-ansi-term" }
nu-pretty-hex = { version = "0.43.0", path="../nu-pretty-hex" }
rawkey = "0.1.3"
[build-dependencies]

View File

@ -4,18 +4,18 @@ description = "A plugin to display charts"
edition = "2018"
license = "MIT"
name = "nu_plugin_chart"
version = "0.42.0"
version = "0.43.0"
[lib]
doctest = false
[dependencies]
nu-data = { path="../nu-data", version = "0.42.0" }
nu-errors = { path="../nu-errors", version = "0.42.0" }
nu-plugin = { path="../nu-plugin", version = "0.42.0" }
nu-protocol = { path="../nu-protocol", version = "0.42.0" }
nu-source = { path="../nu-source", version = "0.42.0" }
nu-value-ext = { path="../nu-value-ext", version = "0.42.0" }
nu-data = { path="../nu-data", version = "0.43.0" }
nu-errors = { path="../nu-errors", version = "0.43.0" }
nu-plugin = { path="../nu-plugin", version = "0.43.0" }
nu-protocol = { path="../nu-protocol", version = "0.43.0" }
nu-source = { path="../nu-source", version = "0.43.0" }
nu-value-ext = { path="../nu-value-ext", version = "0.43.0" }
crossterm = "0.19.0"
tui = { version="0.15.0", default-features=false, features=["crossterm"] }

View File

@ -4,7 +4,7 @@ description = "A converter plugin to the bson format for Nushell"
edition = "2018"
license = "MIT"
name = "nu_plugin_from_bson"
version = "0.42.0"
version = "0.43.0"
[lib]
doctest = false
@ -12,9 +12,9 @@ doctest = false
[dependencies]
bigdecimal = { package = "bigdecimal", version = "0.3.0", features = ["serde"] }
bson = { version = "2.0.1", features = [ "chrono-0_4" ] }
nu-errors = { path="../nu-errors", version = "0.42.0" }
nu-plugin = { path="../nu-plugin", version = "0.42.0" }
nu-protocol = { path="../nu-protocol", version = "0.42.0" }
nu-source = { path="../nu-source", version = "0.42.0" }
nu-errors = { path="../nu-errors", version = "0.43.0" }
nu-plugin = { path="../nu-plugin", version = "0.43.0" }
nu-protocol = { path="../nu-protocol", version = "0.43.0" }
nu-source = { path="../nu-source", version = "0.43.0" }
[build-dependencies]

View File

@ -4,16 +4,16 @@ description = "A converter plugin to the mp4 format for Nushell"
edition = "2018"
license = "MIT"
name = "nu_plugin_from_mp4"
version = "0.42.0"
version = "0.43.0"
[lib]
doctest = false
[dependencies]
nu-errors = { path="../nu-errors", version = "0.42.0" }
nu-plugin = { path="../nu-plugin", version = "0.42.0" }
nu-protocol = { path="../nu-protocol", version = "0.42.0" }
nu-source = { path="../nu-source", version = "0.42.0" }
nu-errors = { path="../nu-errors", version = "0.43.0" }
nu-plugin = { path="../nu-plugin", version = "0.43.0" }
nu-protocol = { path="../nu-protocol", version = "0.43.0" }
nu-source = { path="../nu-source", version = "0.43.0" }
tempfile = "3.2.0"
mp4 = "0.9.0"

View File

@ -4,17 +4,17 @@ description = "A converter plugin to the bson format for Nushell"
edition = "2018"
license = "MIT"
name = "nu_plugin_from_sqlite"
version = "0.42.0"
version = "0.43.0"
[lib]
doctest = false
[dependencies]
bigdecimal = { package = "bigdecimal", version = "0.3.0", features = ["serde"] }
nu-errors = { path="../nu-errors", version = "0.42.0" }
nu-plugin = { path="../nu-plugin", version = "0.42.0" }
nu-protocol = { path="../nu-protocol", version = "0.42.0" }
nu-source = { path="../nu-source", version = "0.42.0" }
nu-errors = { path="../nu-errors", version = "0.43.0" }
nu-plugin = { path="../nu-plugin", version = "0.43.0" }
nu-protocol = { path="../nu-protocol", version = "0.43.0" }
nu-source = { path="../nu-source", version = "0.43.0" }
tempfile = "3.2.0"
[dependencies.rusqlite]

View File

@ -4,18 +4,18 @@ description = "A version incrementer plugin for Nushell"
edition = "2018"
license = "MIT"
name = "nu_plugin_inc"
version = "0.42.0"
version = "0.43.0"
[lib]
doctest = false
[dependencies]
nu-errors = { path="../nu-errors", version = "0.42.0" }
nu-plugin = { path="../nu-plugin", version = "0.42.0" }
nu-protocol = { path="../nu-protocol", version = "0.42.0" }
nu-source = { path="../nu-source", version = "0.42.0" }
nu-test-support = { path="../nu-test-support", version = "0.42.0" }
nu-value-ext = { path="../nu-value-ext", version = "0.42.0" }
nu-errors = { path="../nu-errors", version = "0.43.0" }
nu-plugin = { path="../nu-plugin", version = "0.43.0" }
nu-protocol = { path="../nu-protocol", version = "0.43.0" }
nu-source = { path="../nu-source", version = "0.43.0" }
nu-test-support = { path="../nu-test-support", version = "0.43.0" }
nu-value-ext = { path="../nu-value-ext", version = "0.43.0" }
semver = "0.11.0"

View File

@ -4,15 +4,15 @@ description = "A regex match plugin for Nushell"
edition = "2018"
license = "MIT"
name = "nu_plugin_match"
version = "0.42.0"
version = "0.43.0"
[lib]
doctest = false
[dependencies]
nu-errors = { path="../nu-errors", version = "0.42.0" }
nu-plugin = { path="../nu-plugin", version = "0.42.0" }
nu-protocol = { path="../nu-protocol", version = "0.42.0" }
nu-errors = { path="../nu-errors", version = "0.43.0" }
nu-plugin = { path="../nu-plugin", version = "0.43.0" }
nu-protocol = { path="../nu-protocol", version = "0.43.0" }
regex = "1.4.3"
[build-dependencies]

View File

@ -4,14 +4,14 @@ description = "query json files with gjson"
edition = "2018"
license = "MIT"
name = "nu_plugin_query_json"
version = "0.42.0"
version = "0.43.0"
[lib]
doctest = false
[dependencies]
gjson = "0.8.0"
nu-errors = { version = "0.42.0", path="../nu-errors" }
nu-plugin = { version = "0.42.0", path="../nu-plugin" }
nu-protocol = { version = "0.42.0", path="../nu-protocol" }
nu-source = { version = "0.42.0", path="../nu-source" }
nu-errors = { version = "0.43.0", path="../nu-errors" }
nu-plugin = { version = "0.43.0", path="../nu-plugin" }
nu-protocol = { version = "0.43.0", path="../nu-protocol" }
nu-source = { version = "0.43.0", path="../nu-source" }

View File

@ -4,17 +4,17 @@ description = "An S3 plugin for Nushell"
edition = "2018"
license = "MIT"
name = "nu_plugin_s3"
version = "0.42.0"
version = "0.43.0"
[lib]
doctest = false
[dependencies]
futures = { version="0.3.12", features=["compat", "io-compat"] }
nu-errors = { path="../nu-errors", version = "0.42.0" }
nu-plugin = { path="../nu-plugin", version = "0.42.0" }
nu-protocol = { path="../nu-protocol", version = "0.42.0" }
nu-source = { path="../nu-source", version = "0.42.0" }
nu-errors = { path="../nu-errors", version = "0.43.0" }
nu-plugin = { path="../nu-plugin", version = "0.43.0" }
nu-protocol = { path="../nu-protocol", version = "0.43.0" }
nu-source = { path="../nu-source", version = "0.43.0" }
s3handler = "0.7.5"
[build-dependencies]

View File

@ -4,17 +4,17 @@ description = "web scraping using css selector"
edition = "2018"
license = "MIT"
name = "nu_plugin_selector"
version = "0.42.0"
version = "0.43.0"
[lib]
doctest = false
[dependencies]
scraper = "0.12.0"
nu-errors = { version = "0.42.0", path="../nu-errors" }
nu-plugin = { version = "0.42.0", path="../nu-plugin" }
nu-protocol = { version = "0.42.0", path="../nu-protocol" }
nu-source = { version = "0.42.0", path="../nu-source" }
nu-errors = { version = "0.43.0", path="../nu-errors" }
nu-plugin = { version = "0.43.0", path="../nu-plugin" }
nu-protocol = { version = "0.43.0", path="../nu-protocol" }
nu-source = { version = "0.43.0", path="../nu-source" }
[dev-dependencies]
indexmap = { version="1.7", features=["serde-1"] }

View File

@ -4,17 +4,17 @@ description = "A plugin to open files/URLs directly from Nushell"
edition = "2018"
license = "MIT"
name = "nu_plugin_start"
version = "0.42.0"
version = "0.43.0"
[lib]
doctest = false
[dependencies]
glob = "0.3.0"
nu-errors = { path="../nu-errors", version = "0.42.0" }
nu-plugin = { path="../nu-plugin", version = "0.42.0" }
nu-protocol = { path="../nu-protocol", version = "0.42.0" }
nu-source = { path="../nu-source", version = "0.42.0" }
nu-errors = { path="../nu-errors", version = "0.43.0" }
nu-plugin = { path="../nu-plugin", version = "0.43.0" }
nu-protocol = { path="../nu-protocol", version = "0.43.0" }
nu-source = { path="../nu-source", version = "0.43.0" }
url = "2.2.0"
webbrowser = "0.5.5"
@ -22,5 +22,5 @@ webbrowser = "0.5.5"
open = "1.4.0"
[build-dependencies]
nu-errors = { version = "0.42.0", path="../nu-errors" }
nu-source = { version = "0.42.0", path="../nu-source" }
nu-errors = { version = "0.43.0", path="../nu-errors" }
nu-source = { version = "0.43.0", path="../nu-source" }

View File

@ -4,17 +4,17 @@ description = "Text viewer plugin for Nushell"
edition = "2018"
license = "MIT"
name = "nu_plugin_textview"
version = "0.42.0"
version = "0.43.0"
[lib]
doctest = false
[dependencies]
nu-data = { path="../nu-data", version = "0.42.0" }
nu-errors = { path="../nu-errors", version = "0.42.0" }
nu-plugin = { path="../nu-plugin", version = "0.42.0" }
nu-protocol = { path="../nu-protocol", version = "0.42.0" }
nu-source = { path="../nu-source", version = "0.42.0" }
nu-data = { path="../nu-data", version = "0.43.0" }
nu-errors = { path="../nu-errors", version = "0.43.0" }
nu-plugin = { path="../nu-plugin", version = "0.43.0" }
nu-protocol = { path="../nu-protocol", version = "0.43.0" }
nu-source = { path="../nu-source", version = "0.43.0" }
bat = { version="0.18", default-features = false, features=["regex-onig", "paging", "git"] }
term_size = "0.3.2"

View File

@ -4,17 +4,17 @@ description = "A converter plugin to the bson format for Nushell"
edition = "2018"
license = "MIT"
name = "nu_plugin_to_bson"
version = "0.42.0"
version = "0.43.0"
[lib]
doctest = false
[dependencies]
bson = { version = "2.0.1", features = [ "chrono-0_4" ] }
nu-errors = { path="../nu-errors", version = "0.42.0" }
nu-plugin = { path="../nu-plugin", version = "0.42.0" }
nu-protocol = { path="../nu-protocol", version = "0.42.0" }
nu-source = { path="../nu-source", version = "0.42.0" }
nu-errors = { path="../nu-errors", version = "0.43.0" }
nu-plugin = { path="../nu-plugin", version = "0.43.0" }
nu-protocol = { path="../nu-protocol", version = "0.43.0" }
nu-source = { path="../nu-source", version = "0.43.0" }
num-traits = "0.2.14"
[features]

View File

@ -4,17 +4,17 @@ description = "A converter plugin to the SQLite format for Nushell"
edition = "2018"
license = "MIT"
name = "nu_plugin_to_sqlite"
version = "0.42.0"
version = "0.43.0"
[lib]
doctest = false
[dependencies]
hex = "0.4.2"
nu-errors = { path="../nu-errors", version = "0.42.0" }
nu-plugin = { path="../nu-plugin", version = "0.42.0" }
nu-protocol = { path="../nu-protocol", version = "0.42.0" }
nu-source = { path="../nu-source", version = "0.42.0" }
nu-errors = { path="../nu-errors", version = "0.43.0" }
nu-plugin = { path="../nu-plugin", version = "0.43.0" }
nu-protocol = { path="../nu-protocol", version = "0.43.0" }
nu-source = { path="../nu-source", version = "0.43.0" }
tempfile = "3.2.0"
[dependencies.rusqlite]

View File

@ -4,16 +4,16 @@ description = "Tree viewer plugin for Nushell"
edition = "2018"
license = "MIT"
name = "nu_plugin_tree"
version = "0.42.0"
version = "0.43.0"
[lib]
doctest = false
[dependencies]
derive-new = "0.5.8"
nu-errors = { path="../nu-errors", version = "0.42.0" }
nu-plugin = { path="../nu-plugin", version = "0.42.0" }
nu-protocol = { path="../nu-protocol", version = "0.42.0" }
nu-errors = { path="../nu-errors", version = "0.43.0" }
nu-plugin = { path="../nu-plugin", version = "0.43.0" }
nu-protocol = { path="../nu-protocol", version = "0.43.0" }
ptree = { version = "0.4.0", default-features = false }

View File

@ -4,16 +4,16 @@ description = "Traverses xml"
edition = "2018"
license = "MIT"
name = "nu_plugin_xpath"
version = "0.42.0"
version = "0.43.0"
[lib]
doctest = false
[dependencies]
nu-errors = { version = "0.42.0", path="../nu-errors" }
nu-plugin = { path="../nu-plugin", version = "0.42.0" }
nu-protocol = { version = "0.42.0", path="../nu-protocol" }
nu-source = { version = "0.42.0", path="../nu-source" }
nu-errors = { version = "0.43.0", path="../nu-errors" }
nu-plugin = { path="../nu-plugin", version = "0.43.0" }
nu-protocol = { version = "0.43.0", path="../nu-protocol" }
nu-source = { version = "0.43.0", path="../nu-source" }
bigdecimal = { package = "bigdecimal", version = "0.3.0", features = ["serde"] }
indexmap = { version="1.6.1", features=["serde-1"] }
@ -21,4 +21,4 @@ sxd-document = "0.3.2"
sxd-xpath = "0.4.2"
[dev-dependencies]
nu-test-support = { path="../nu-test-support", version = "0.42.0" }
nu-test-support = { path="../nu-test-support", version = "0.43.0" }