Upgrade deps

Also added changelog entry
next
Sayan Nandan 3 years ago
parent cac9a9225f
commit 9656d7d9f6
No known key found for this signature in database
GPG Key ID: 2932644755A97720

@ -4,6 +4,10 @@ All changes in this project will be noted in this file.
## Unreleased
### Additions
- Pipelined queries are now supported
### Improvements
- `skysh`:

33
Cargo.lock generated

@ -59,9 +59,9 @@ dependencies = [
[[package]]
name = "bitflags"
version = "1.2.1"
version = "1.3.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "cf1de2fe8c75bc145a2f577add951f8134889b4795d47466a54a5c846d691693"
checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a"
[[package]]
name = "bytes"
@ -173,9 +173,9 @@ dependencies = [
[[package]]
name = "crossterm"
version = "0.21.0"
version = "0.22.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "486d44227f71a1ef39554c0dc47e44b9f4139927c75043312690c3f476d1d788"
checksum = "c85525306c4291d1b73ce93c8acf9c339f9b213aef6c1d85c3830cbf1c16325c"
dependencies = [
"bitflags",
"crossterm_winapi",
@ -189,9 +189,9 @@ dependencies = [
[[package]]
name = "crossterm_winapi"
version = "0.8.0"
version = "0.9.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3a6966607622438301997d3dac0d2f6e9a90c68bb6bc1785ea98456ab93c0507"
checksum = "2ae1b35a484aa10e07fe0638d02301c5ad24de82d310ccbd2f3693da5f09bf1c"
dependencies = [
"winapi",
]
@ -482,9 +482,9 @@ dependencies = [
[[package]]
name = "nix"
version = "0.22.2"
version = "0.22.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d3bb9a13fa32bc5aeb64150cd3f32d6cf4c748f8f8a417cce5d2eb976a8370ba"
checksum = "cf1e25ee6b412c2a1e3fcb6a4499a5c1bfe7f43e014bdce9a6b6666e5aa2d187"
dependencies = [
"bitflags",
"cc",
@ -907,7 +907,7 @@ dependencies = [
"regex",
"serde",
"sky_macros",
"skytable 0.6.1 (git+https://github.com/skytable/client-rust?branch=pipelines)",
"skytable 0.6.1 (git+https://github.com/skytable/client-rust?branch=next)",
"tokio",
"tokio-openssl",
"toml",
@ -929,18 +929,7 @@ dependencies = [
[[package]]
name = "skytable"
version = "0.6.1"
source = "git+https://github.com/skytable/client-rust?branch=next#2f67d7c7592e5272bf00b5f2fb95cf44fb700655"
dependencies = [
"bytes",
"openssl",
"tokio",
"tokio-openssl",
]
[[package]]
name = "skytable"
version = "0.6.1"
source = "git+https://github.com/skytable/client-rust?branch=pipelines#8e5175107111b5661dc6b22e34928a5a63b160d5"
source = "git+https://github.com/skytable/client-rust?branch=next#9a34fd825a22d172e61786783c7c4606b6e38e8a"
dependencies = [
"bytes",
"openssl",
@ -951,7 +940,7 @@ dependencies = [
[[package]]
name = "skytable"
version = "0.6.1"
source = "git+https://github.com/skytable/client-rust.git#2f67d7c7592e5272bf00b5f2fb95cf44fb700655"
source = "git+https://github.com/skytable/client-rust.git#9a34fd825a22d172e61786783c7c4606b6e38e8a"
[[package]]
name = "smallvec"

@ -14,7 +14,7 @@ skytable = { git = "https://github.com/skytable/client-rust", branch = "next", f
"aio-sslv",
], default-features = false }
# external deps
tokio = { version = "1.12.0", features = ["full"] }
tokio = { version = "1.13.0", features = ["full"] }
clap = { version = "2.33.3", features = ["yaml"] }
rustyline = "9.0.0"
crossterm = "0.21.0"
crossterm = "0.22.1"

@ -9,9 +9,9 @@ version = "0.7.1"
# internal deps
libsky = { path = "../libsky" }
sky_macros = { path = "../sky-macros" }
skytable = { git = "https://github.com/skytable/client-rust", branch = "pipelines", default-features = false }
skytable = { git = "https://github.com/skytable/client-rust", branch = "next", default-features = false }
# external deps
ahash = "0.7.5"
ahash = "0.7.6"
bytes = "1.1.0"
chrono = "0.4.19"
clap = { version = "2.33.3", features = ["yaml"] }
@ -19,12 +19,12 @@ env_logger = "0.9.0"
hashbrown = { version = "0.11.2", features = ["raw"] }
log = "0.4.14"
num_cpus = "1.13.0"
openssl = { version = "0.10.36", features = ["vendored"] }
openssl = { version = "0.10.37", features = ["vendored"] }
parking_lot = "0.11.2"
regex = "1.5.4"
serde = { version = "1.0.130", features = ["derive"] }
tokio = { version = "1.12.0", features = ["full"] }
tokio-openssl = "0.6.2"
tokio = { version = "1.13.0", features = ["full"] }
tokio-openssl = "0.6.3"
toml = "0.5.8"
[target.'cfg(not(target_env = "msvc"))'.dependencies]
@ -44,11 +44,11 @@ libstress = { path = "../libstress" }
skytable = { git = "https://github.com/skytable/client-rust", features = [
"async",
"aio-ssl",
], default-features = false, branch = "pipelines" }
], default-features = false, branch = "next" }
# external deps
bincode = "1.3.3"
rand = "0.8.4"
tokio = { version = "1.12.0", features = ["test-util"] }
tokio = { version = "1.13.0", features = ["test-util"] }
[target.'cfg(unix)'.dependencies]
# external deps
libc = "0.2.103"
libc = "0.2.105"

@ -11,7 +11,7 @@ proc-macro = true
[dependencies]
# external deps
proc-macro2 = "1.0.30"
proc-macro2 = "1.0.32"
quote = "1.0.10"
rand = "0.8.4"
syn = {version = "1.0.80", features = ["full"]}
syn = { version = "1.0.81", features = ["full"] }

Loading…
Cancel
Save