updated dependencies (#2857)

Same as #2786

Co-authored-by: sousajo <sousajo@pop-os.localdomain>
Co-authored-by: Jonathan Turner <jonathandturner@users.noreply.github.com>
This commit is contained in:
sousajf1 2021-01-07 00:38:22 +00:00 committed by GitHub
parent 455915ec9e
commit f38e2b5c6d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
13 changed files with 303 additions and 556 deletions

823
Cargo.lock generated

File diff suppressed because it is too large Load diff

View file

@ -50,9 +50,9 @@ nu_plugin_xpath = {version = "0.25.1", path = "./crates/nu_plugin_xpath", option
clap = "2.33.3" clap = "2.33.3"
ctrlc = {version = "3.1.6", optional = true} ctrlc = {version = "3.1.6", optional = true}
futures = {version = "0.3.5", features = ["compat", "io-compat"]} futures = {version = "0.3.5", features = ["compat", "io-compat"]}
itertools = "0.9.0"
log = "0.4.11" log = "0.4.11"
pretty_env_logger = "0.4.0" pretty_env_logger = "0.4.0"
itertools = "0.10.0"
syn = "=1.0.57" syn = "=1.0.57"
[dev-dependencies] [dev-dependencies]

View file

@ -36,7 +36,7 @@ calamine = "0.16.1"
chrono = {version = "0.4.15", features = ["serde"]} chrono = {version = "0.4.15", features = ["serde"]}
chrono-tz = "0.5.3" chrono-tz = "0.5.3"
clap = "2.33.3" clap = "2.33.3"
codespan-reporting = "0.9.5" codespan-reporting = "0.11.0"
csv = "1.1.3" csv = "1.1.3"
ctrlc = {version = "3.1.6", optional = true} ctrlc = {version = "3.1.6", optional = true}
derive-new = "0.5.8" derive-new = "0.5.8"
@ -49,17 +49,17 @@ encoding_rs = "0.8.24"
filesize = "0.2.0" filesize = "0.2.0"
fs_extra = "1.2.0" fs_extra = "1.2.0"
futures = {version = "0.3.5", features = ["compat", "io-compat"]} futures = {version = "0.3.5", features = ["compat", "io-compat"]}
futures-util = "0.3.5" futures-util = "0.3.8"
futures_codec = "0.4.1" futures_codec = "0.4.1"
getset = "0.1.1" getset = "0.1.1"
git2 = {version = "0.13.11", default_features = false, optional = true} git2 = {version = "0.13.11", default_features = false, optional = true}
glob = "0.3.0" glob = "0.3.0"
heim = {version = "0.1.0-rc.1", optional = true} heim = {version = "0.1.0-rc.1", optional = true}
htmlescape = "0.3.1" htmlescape = "0.3.1"
ical = "0.6.0" ical = "0.7.0"
ichwh = {version = "0.3.4", optional = true} ichwh = {version = "0.3.4", optional = true}
indexmap = {version = "1.6.0", features = ["serde-1"]} indexmap = {version = "1.6.0", features = ["serde-1"]}
itertools = "0.9.0" itertools = "0.10.0"
lazy_static = "1.*" lazy_static = "1.*"
log = "0.4.11" log = "0.4.11"
meval = "0.2.0" meval = "0.2.0"
@ -71,11 +71,11 @@ pin-utils = "0.1.0"
pretty-hex = "0.2.0" pretty-hex = "0.2.0"
ptree = {version = "0.3.0", optional = true} ptree = {version = "0.3.0", optional = true}
query_interface = "0.3.5" query_interface = "0.3.5"
quick-xml = "0.18.1" quick-xml = "0.20.0"
rand = "0.7.3" rand = "0.7.3"
rayon = "1.4.0" rayon = "1.4.0"
regex = "1.3.9" regex = "1.3.9"
roxmltree = "0.13.0" roxmltree = "0.14.0"
rust-embed = "5.6.0" rust-embed = "5.6.0"
rustyline = {version = "6.3.0", optional = true} rustyline = {version = "6.3.0", optional = true}
serde = {version = "1.0.115", features = ["derive"]} serde = {version = "1.0.115", features = ["derive"]}

View file

@ -14,7 +14,7 @@ nu-source = {path = "../nu-source", version = "0.25.1"}
ansi_term = "0.12.1" ansi_term = "0.12.1"
bigdecimal = {version = "0.2.0", features = ["serde"]} bigdecimal = {version = "0.2.0", features = ["serde"]}
codespan-reporting = {version = "0.9.5", features = ["serialization"]} codespan-reporting = {version = "0.11.0", features = ["serialization"]}
derive-new = "0.5.8" derive-new = "0.5.8"
getset = "0.1.1" getset = "0.1.1"
num-bigint = {version = "0.3.0", features = ["serde"]} num-bigint = {version = "0.3.0", features = ["serde"]}

View file

@ -9,7 +9,7 @@ version = "0.25.1"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies] [dependencies]
num-traits = "0.2.14"
lazy_static = "1" lazy_static = "1"
num-traits = "~0.1.32"
regex = "^1.0" regex = "^1.0"
serde = "^0.8.0" serde = "^0.8.0"

View file

@ -10,7 +10,7 @@ version = "0.25.1"
[dependencies] [dependencies]
bigdecimal = {version = "0.2.0", features = ["serde"]} bigdecimal = {version = "0.2.0", features = ["serde"]}
codespan-reporting = "0.9.5" codespan-reporting = "0.11.0"
derive-new = "0.5.8" derive-new = "0.5.8"
indexmap = {version = "1.6.0", features = ["serde-1"]} indexmap = {version = "1.6.0", features = ["serde-1"]}
log = "0.4.11" log = "0.4.11"

View file

@ -15,5 +15,5 @@ nu-protocol = {path = "../nu-protocol", version = "0.25.1"}
nu-source = {path = "../nu-source", version = "0.25.1"} nu-source = {path = "../nu-source", version = "0.25.1"}
indexmap = {version = "1.6.0", features = ["serde-1"]} indexmap = {version = "1.6.0", features = ["serde-1"]}
itertools = "0.9.0" itertools = "0.10.0"
num-traits = "0.2.12" num-traits = "0.2.12"

View file

@ -18,6 +18,6 @@ nu-protocol = {path = "../nu-protocol", version = "0.25.1"}
nu-source = {path = "../nu-source", version = "0.25.1"} nu-source = {path = "../nu-source", version = "0.25.1"}
nu-value-ext = {path = "../nu-value-ext", version = "0.25.1"} nu-value-ext = {path = "../nu-value-ext", version = "0.25.1"}
crossterm = "0.18" crossterm = "0.19.0"
tui = {version = "0.14.0", default-features = false, features = ["crossterm"]}
syn = "=1.0.57" syn = "=1.0.57"
tui = {version = "0.12.0", default-features = false, features = ["crossterm"]}

View file

@ -9,7 +9,7 @@ use crate::bar::Bar;
use std::{ use std::{
error::Error, error::Error,
io::{stdout, Write}, io::stdout,
sync::mpsc, sync::mpsc,
thread, thread,
time::{Duration, Instant}, time::{Duration, Instant},

View file

@ -9,7 +9,7 @@ use crate::line::Line;
use std::{ use std::{
error::Error, error::Error,
io::{stdout, Write}, io::stdout,
sync::mpsc, sync::mpsc,
thread, thread,
time::{Duration, Instant}, time::{Duration, Instant},

View file

@ -10,7 +10,7 @@ version = "0.25.1"
doctest = false doctest = false
[dependencies] [dependencies]
base64 = "0.12.3" base64 = "0.13.0"
futures = {version = "0.3.5", features = ["compat", "io-compat"]} futures = {version = "0.3.5", features = ["compat", "io-compat"]}
nu-errors = {path = "../nu-errors", version = "0.25.1"} nu-errors = {path = "../nu-errors", version = "0.25.1"}
nu-plugin = {path = "../nu-plugin", version = "0.25.1"} nu-plugin = {path = "../nu-plugin", version = "0.25.1"}

View file

@ -17,7 +17,7 @@ nu-protocol = {path = "../nu-protocol", version = "0.25.1"}
nu-source = {path = "../nu-source", version = "0.25.1"} nu-source = {path = "../nu-source", version = "0.25.1"}
ansi_term = "0.12.1" ansi_term = "0.12.1"
bat = {version = "0.15.4", features = ["regex-fancy", "paging"]} bat = {version = "0.17.1", features = ["regex-fancy", "paging"]}
term_size = "0.3.2" term_size = "0.3.2"
url = "2.1.1" url = "2.1.1"

View file

@ -120,7 +120,7 @@ pub fn view_text_value(value: &Value) {
Some(file_path) => { Some(file_path) => {
// Let bat do it's thing // Let bat do it's thing
bat::PrettyPrinter::new() bat::PrettyPrinter::new()
.input_from_bytes_with_name(s.as_bytes(), file_path) .input(bat::Input::from_bytes(s.as_bytes()).name(file_path))
.term_width(term_width as usize) .term_width(term_width as usize)
.tab_width(Some(tab_width as usize)) .tab_width(Some(tab_width as usize))
.colored_output(colored_output) .colored_output(colored_output)