Upgrade deps

next
Sayan Nandan 1 year ago
parent c1f8e2d1bd
commit e2b81ac77f
No known key found for this signature in database
GPG Key ID: 42EEDF4AE9D96B54

667
Cargo.lock generated

File diff suppressed because it is too large Load Diff

@ -14,8 +14,8 @@ skytable = { git = "https://github.com/skytable/client-rust", branch = "next", f
"aio-sslv",
], default-features = false }
# external deps
tokio = { version = "1.28.1", features = ["full"] }
tokio = { version = "1.29.1", features = ["full"] }
clap = { version = "2", features = ["yaml"] }
rustyline = "10.1.1"
rustyline = "12.0.0"
crossterm = "0.26.1"
lazy_static = "1.4.0"

@ -32,7 +32,7 @@ use {
terminal::{Clear, ClearType},
},
libsky::{URL, VERSION},
rustyline::{config::Configurer, error::ReadlineError, Editor},
rustyline::{config::Configurer, error::ReadlineError, DefaultEditor},
skytable::{Pipeline, Query},
std::{io::stdout, process},
};
@ -110,12 +110,14 @@ pub async fn start_repl() {
},
None => 2003,
};
let mut editor = match Editor::<()>::new() {
let mut editor = match DefaultEditor::new() {
Ok(e) => e,
Err(e) => fatal!("Editor init error: {}", e),
};
editor.set_auto_add_history(true);
editor.set_history_ignore_dups(true);
editor
.set_history_ignore_dups(true)
.unwrap_or_else(|_| fatal!("couldn't set up terminal"));
editor.bind_sequence(
rustyline::KeyEvent(
rustyline::KeyCode::BracketedPasteStart,

@ -13,7 +13,7 @@ skytable = { git = "https://github.com/skytable/client-rust.git", features = [
libsky = { path = "../libsky" }
# external deps
env_logger = "0.10.0"
log = "0.4.17"
log = "0.4.19"
zip = { version = "0.6.6", features = ["deflate"] }
powershell_script = "1.1.0"
openssl = { version = "0.10.52", features = ["vendored"] }
openssl = { version = "0.10.55", features = ["vendored"] }

@ -10,5 +10,5 @@ edition = "2021"
# external deps
crossbeam-channel = "0.5.8"
rayon = "1.7.0"
log = "0.4.17"
log = "0.4.19"
rand = "0.8.5"

@ -13,21 +13,21 @@ rcrypt = "0.4.0"
# external deps
ahash = "0.8.3"
bytes = "1.4.0"
chrono = "0.4.24"
chrono = "0.4.26"
clap = { version = "2", features = ["yaml"] }
env_logger = "0.10.0"
hashbrown = { version = "0.13.2", features = ["raw"] }
log = "0.4.17"
openssl = { version = "0.10.52", features = ["vendored"] }
crossbeam-epoch = { version = "0.9.14" }
hashbrown = { version = "0.14.0", features = ["raw"] }
log = "0.4.19"
openssl = { version = "0.10.55", features = ["vendored"] }
crossbeam-epoch = { version = "0.9.15" }
parking_lot = "0.12.1"
regex = "1.6.0"
serde = { version = "1.0.163", features = ["derive"] }
tokio = { version = "1.28.1", features = ["full"] }
regex = "1.9.1"
serde = { version = "1.0.175", features = ["derive"] }
tokio = { version = "1.29.1", features = ["full"] }
tokio-openssl = "0.6.3"
toml = "0.7.4"
toml = "0.7.6"
base64 = "0.21.2"
uuid = { version = "1.3.3", features = ["v4", "fast-rng", "macro-diagnostics"] }
uuid = { version = "1.4.1", features = ["v4", "fast-rng", "macro-diagnostics"] }
crc = "3.0.1"
[target.'cfg(all(not(target_env = "msvc"), not(miri)))'.dependencies]
@ -39,7 +39,7 @@ winapi = { version = "0.3.9", features = ["fileapi"] }
[target.'cfg(unix)'.dependencies]
# external deps
libc = "0.2.144"
libc = "0.2.147"
[target.'cfg(unix)'.build-dependencies]
# external deps
@ -55,7 +55,7 @@ skytable = { git = "https://github.com/skytable/client-rust", features = [
# external deps
bincode = "1.3.3"
rand = "0.8.5"
tokio = { version = "1.28.1", features = ["test-util"] }
tokio = { version = "1.29.1", features = ["test-util"] }
[features]
nightly = []

@ -277,7 +277,7 @@ where
Some(bucket) => {
let (kptr, vptr) = bucket.as_ref();
if f(kptr, vptr) {
Some(lowtable.remove(bucket))
Some(lowtable.remove(bucket).0)
} else {
None
}

@ -15,9 +15,9 @@ skytable = { git = "https://github.com/skytable/client-rust.git", features = [
libstress = { path = "../libstress" }
# external deps
clap = { version = "2", features = ["yaml"] }
log = "0.4.17"
log = "0.4.19"
env_logger = "0.10.0"
devtimer = "4.0.1"
serde = { version = "1.0.163", features = ["derive"] }
serde_json = "1.0.96"
serde = { version = "1.0.175", features = ["derive"] }
serde_json = "1.0.103"
rand = "0.8.5"

@ -11,7 +11,7 @@ proc-macro = true
[dependencies]
# external deps
proc-macro2 = "1.0.58"
quote = "1.0.27"
proc-macro2 = "1.0.66"
quote = "1.0.32"
rand = "0.8.5"
syn = { version = "1.0.109", features = ["full"] }

@ -10,5 +10,5 @@ edition = "2021"
skytable = { git = "https://github.com/skytable/client-rust.git" }
env_logger = "0.10.0"
bincode = "1.3.3"
log = "0.4.17"
log = "0.4.19"
clap = { version = "2", features = ["yaml"] }

@ -14,8 +14,8 @@ skytable = { git = "https://github.com/skytable/client-rust.git", branch = "next
] }
devtimer = "4.0.1"
# external deps
sysinfo = "0.29.0"
sysinfo = "0.29.6"
env_logger = "0.10.0"
log = "0.4.17"
log = "0.4.19"
rand = "0.8.5"
crossbeam-channel = "0.5.8"

Loading…
Cancel
Save