Bump up version

next
Sayan Nandan 3 years ago
parent dff703e843
commit a43e1183b3

26
Cargo.lock generated

@ -421,9 +421,9 @@ checksum = "9a3a5bfb195931eeb336b2a7b4d761daec841b97f947d34394601737a7bba5e4"
[[package]]
name = "instant"
version = "0.1.10"
version = "0.1.11"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "bee0328b1209d157ef001c94dd85b4f8f64139adb0eac2659f4b08382b2f474d"
checksum = "716d3d89f35ac6a34fd0eed635395f4c3b76fa889338a4632e5231a8684216bd"
dependencies = [
"cfg-if",
]
@ -469,7 +469,7 @@ checksum = "a2a5ac8f984bfcf3a823267e5fde638acc3325f6496633a5da6bb6eb2171e103"
[[package]]
name = "libsky"
version = "0.7.0"
version = "0.7.1-alpha.1"
dependencies = [
"lazy_static",
"regex",
@ -479,7 +479,7 @@ dependencies = [
[[package]]
name = "libstress"
version = "0.7.0"
version = "0.7.1-alpha.1"
dependencies = [
"crossbeam-channel",
"log",
@ -634,9 +634,9 @@ dependencies = [
[[package]]
name = "openssl-sys"
version = "0.9.66"
version = "0.9.67"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1996d2d305e561b70d1ee0c53f1542833f4e1ac6ce9a6708b6ff2738ca67dc82"
checksum = "69df2d8dfc6ce3aaf44b40dec6f487d5a886516cf6879c49e98e0710f310a058"
dependencies = [
"autocfg",
"cc",
@ -935,7 +935,7 @@ dependencies = [
[[package]]
name = "sky-bench"
version = "0.7.0"
version = "0.7.1-alpha.1"
dependencies = [
"clap",
"devtimer",
@ -948,7 +948,7 @@ dependencies = [
[[package]]
name = "sky-migrate"
version = "0.7.0"
version = "0.7.1-alpha.1"
dependencies = [
"bincode",
"clap",
@ -959,7 +959,7 @@ dependencies = [
[[package]]
name = "sky_macros"
version = "0.7.0"
version = "0.7.1-alpha.1"
dependencies = [
"proc-macro2",
"quote",
@ -969,7 +969,7 @@ dependencies = [
[[package]]
name = "skyd"
version = "0.7.0"
version = "0.7.1-alpha.1"
dependencies = [
"ahash",
"bincode",
@ -1000,7 +1000,7 @@ dependencies = [
[[package]]
name = "skysh"
version = "0.7.0"
version = "0.7.1-alpha.1"
dependencies = [
"clap",
"crossterm",
@ -1122,9 +1122,9 @@ dependencies = [
[[package]]
name = "tokio"
version = "1.11.0"
version = "1.12.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b4efe6fc2395938c8155973d7be49fe8d03a843726e285e100a8a383cc0154ce"
checksum = "c2c2416fdedca8443ae44b4527de1ea633af61d8f7169ffa6e72c5b53d24efcc"
dependencies = [
"autocfg",
"bytes",

@ -1,6 +1,6 @@
[package]
name = "skysh"
version = "0.7.0"
version = "0.7.1-alpha.1"
authors = ["Sayan Nandan <ohsayan@outlook.com>"]
edition = "2018"
@ -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.11.0", features = ["full"] }
tokio = { version = "1.12.0", features = ["full"] }
clap = { version = "2.33.3", features = ["yaml"] }
rustyline = "9.0.0"
crossterm = "0.21.0"

@ -1,6 +1,6 @@
[package]
name = "libsky"
version = "0.7.0"
version = "0.7.1-alpha.1"
authors = ["Sayan Nandan <ohsayan@outlook.com>"]
edition = "2018"

@ -68,7 +68,7 @@ pub fn split_into_args(q: &str) -> Vec<String> {
.map(|val| {
let mut v = val.as_str();
let mut chars = v.chars();
let first = chars.nth(0);
let first = chars.next();
let last = chars.last();
if let Some('"' | '\'') = first {
v = &v[1..];

@ -1,6 +1,6 @@
[package]
name = "libstress"
version = "0.7.0"
version = "0.7.1-alpha.1"
authors = ["Sayan Nandan <nandansayan@outlook.com>"]
edition = "2018"

@ -3,27 +3,27 @@ authors = ["Sayan Nandan <ohsayan@outlook.com>"]
build = "build.rs"
edition = "2018"
name = "skyd"
version = "0.7.0"
version = "0.7.1-alpha.1"
[dependencies]
# internal deps
libsky = {path = "../libsky"}
sky_macros = {path = "../sky-macros"}
skytable = {git = "https://github.com/skytable/client-rust", branch = "next", default-features = false}
libsky = { path = "../libsky" }
sky_macros = { path = "../sky-macros" }
skytable = { git = "https://github.com/skytable/client-rust", branch = "next", default-features = false }
# external deps
ahash = "0.7.4"
bytes = "1.1.0"
chrono = "0.4.19"
clap = {version = "2.33.3", features = ["yaml"]}
clap = { version = "2.33.3", features = ["yaml"] }
env_logger = "0.9.0"
hashbrown = {version = "0.11.2", features = ["raw"]}
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.36", features = ["vendored"] }
parking_lot = "0.11.2"
regex = "1.5.4"
serde = {version = "1.0.130", features = ["derive"]}
tokio = {version = "1.11.0", features = ["full"]}
serde = { version = "1.0.130", features = ["derive"] }
tokio = { version = "1.12.0", features = ["full"] }
tokio-openssl = "0.6.2"
toml = "0.5.8"
@ -32,7 +32,7 @@ toml = "0.5.8"
jemallocator = "0.3.2"
[target.'cfg(target_os = "windows")'.dependencies]
# external deps
winapi = {version = "0.3.9", features = ["fileapi"]}
winapi = { version = "0.3.9", features = ["fileapi"] }
[target.'cfg(unix)'.build-dependencies]
# external deps
@ -40,15 +40,15 @@ cc = "1.0.70"
[dev-dependencies]
# internal deps
libstress = {path = "../libstress"}
skytable = {git = "https://github.com/skytable/client-rust", features = [
libstress = { path = "../libstress" }
skytable = { git = "https://github.com/skytable/client-rust", features = [
"async",
"aio-ssl",
], default-features = false, branch = "next"}
], default-features = false, branch = "next" }
# external deps
bincode = "1.3.3"
rand = "0.8.4"
tokio = {version = "1.11.0", features = ["test-util"]}
tokio = { version = "1.12.0", features = ["test-util"] }
[target.'cfg(unix)'.dependencies]
# external deps
libc = "0.2.102"

@ -2,17 +2,17 @@
authors = ["Sayan Nandan <ohsayan@outlook.com>"]
edition = "2018"
name = "sky-bench"
version = "0.7.0"
version = "0.7.1-alpha.1"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
# internal deps
libstress = {path = "../libstress"}
skytable = {git = "https://github.com/skytable/client-rust", branch = "next"}
libstress = { path = "../libstress" }
skytable = { git = "https://github.com/skytable/client-rust", branch = "next" }
# external deps
clap = {version = "2.33.3", features = ["yaml"]}
clap = { version = "2.33.3", features = ["yaml"] }
devtimer = "4.0.1"
rand = "0.8.4"
serde = {version = "1.0.130", features = ["derive"]}
serde = { version = "1.0.130", features = ["derive"] }
serde_json = "1.0.68"

@ -1,6 +1,6 @@
[package]
name = "sky_macros"
version = "0.7.0"
version = "0.7.1-alpha.1"
authors = ["Sayan Nandan <ohsayan@outlook.com>"]
edition = "2018"

@ -1,6 +1,6 @@
[package]
name = "sky-migrate"
version = "0.7.0"
version = "0.7.1-alpha.1"
authors = ["Sayan Nandan <nandansayan@outlook.com>"]
edition = "2018"

Loading…
Cancel
Save