Release 0.7.3 (#238)

* Bump version

* Upgrade deps
next
Sayan 3 years ago committed by GitHub
parent 49fae295d1
commit e9620d0a8c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

36
Cargo.lock generated

@ -464,14 +464,14 @@ checksum = "e74d72e0f9b65b5b4ca49a346af3976df0f9c61d550727f349ecd559f251a26c"
[[package]]
name = "libsky"
version = "0.7.3-alpha.3"
version = "0.7.3"
dependencies = [
"termcolor",
]
[[package]]
name = "libstress"
version = "0.7.3-alpha.3"
version = "0.7.3"
dependencies = [
"crossbeam-channel",
"log",
@ -757,14 +757,13 @@ dependencies = [
[[package]]
name = "rand"
version = "0.8.4"
version = "0.8.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2e7573632e6454cf6b99d7aac4ccca54be06da05aca2ef7423d22d27d4d4bcd8"
checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404"
dependencies = [
"libc",
"rand_chacha",
"rand_core",
"rand_hc",
]
[[package]]
@ -786,15 +785,6 @@ dependencies = [
"getrandom",
]
[[package]]
name = "rand_hc"
version = "0.3.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d51e9f596de227fda2ea6c84607f5558e196eeaf43c986b724ba4fb8fdf497e7"
dependencies = [
"rand_core",
]
[[package]]
name = "rayon"
version = "1.5.1"
@ -937,9 +927,9 @@ dependencies = [
[[package]]
name = "serde_json"
version = "1.0.78"
version = "1.0.79"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d23c1ba4cf0efd44be32017709280b32d1cea5c3f1275c3b6d9e8bc54f758085"
checksum = "8e8d9fa5c3b304765ce1fd9c4c8a3de2c8db365a5b91be52f186efc675681d95"
dependencies = [
"itoa",
"ryu",
@ -978,7 +968,7 @@ dependencies = [
[[package]]
name = "sky-bench"
version = "0.7.3-alpha.3"
version = "0.7.3"
dependencies = [
"clap",
"devtimer",
@ -991,7 +981,7 @@ dependencies = [
[[package]]
name = "sky-migrate"
version = "0.7.3-alpha.3"
version = "0.7.3"
dependencies = [
"bincode",
"clap",
@ -1002,7 +992,7 @@ dependencies = [
[[package]]
name = "sky_macros"
version = "0.7.3-alpha.3"
version = "0.7.3"
dependencies = [
"proc-macro2",
"quote",
@ -1012,7 +1002,7 @@ dependencies = [
[[package]]
name = "skyd"
version = "0.7.3-alpha.3"
version = "0.7.3"
dependencies = [
"ahash",
"bincode",
@ -1043,7 +1033,7 @@ dependencies = [
[[package]]
name = "skysh"
version = "0.7.3-alpha.3"
version = "0.7.3"
dependencies = [
"clap",
"crossterm",
@ -1127,9 +1117,9 @@ dependencies = [
[[package]]
name = "sysinfo"
version = "0.23.1"
version = "0.23.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6bb29fc86b56b6d432ecdbbff2e5726aeaa69bf1bb48ddd994432b60d8bccd01"
checksum = "92d82ade9d6621d4ca052a00bb6ea9ed513d223cba75a84625c5e9c0698ab6f5"
dependencies = [
"cfg-if",
"core-foundation-sys",

@ -1,6 +1,6 @@
[package]
name = "skysh"
version = "0.7.3-alpha.3"
version = "0.7.3"
authors = ["Sayan Nandan <ohsayan@outlook.com>"]
edition = "2021"

@ -2,7 +2,7 @@
authors = ["Sayan Nandan <ohsayan@outlook.com>"]
edition = "2021"
name = "libsky"
version = "0.7.3-alpha.3"
version = "0.7.3"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

@ -1,6 +1,6 @@
[package]
name = "libstress"
version = "0.7.3-alpha.3"
version = "0.7.3"
authors = ["Sayan Nandan <nandansayan@outlook.com>"]
edition = "2021"
@ -12,4 +12,4 @@ num_cpus = "1.13.1"
crossbeam-channel = "0.5.2"
rayon = "1.5.1"
log = "0.4.14"
rand = "0.8.4"
rand = "0.8.5"

@ -3,7 +3,7 @@ authors = ["Sayan Nandan <ohsayan@outlook.com>"]
build = "build.rs"
edition = "2021"
name = "skyd"
version = "0.7.3-alpha.3"
version = "0.7.3"
[dependencies]
# internal deps
@ -47,7 +47,7 @@ skytable = { git = "https://github.com/skytable/client-rust", features = [
], default-features = false, branch = "next" }
# external deps
bincode = "1.3.3"
rand = "0.8.4"
rand = "0.8.5"
tokio = { version = "1.16.1", features = ["test-util"] }
[target.'cfg(unix)'.dependencies]
# external deps
@ -59,7 +59,7 @@ nightly = []
[package.metadata.deb]
name = "skytable"
maintainer = "Sayan Nandan <nandansayan@outlook.com>"
copyright = "2020, Sayan Nandan <nandansayan@outlook.com>"
copyright = "2022, Sayan Nandan <nandansayan@outlook.com>"
license-file = ["../LICENSE", "0"]
maintainer-scripts = "../pkg/debian/"
extended-description-file = "pkg/debian/description.txt"

@ -2,7 +2,7 @@
authors = ["Sayan Nandan <ohsayan@outlook.com>"]
edition = "2021"
name = "sky-bench"
version = "0.7.3-alpha.3"
version = "0.7.3"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
@ -15,6 +15,6 @@ skytable = { git = "https://github.com/skytable/client-rust", branch = "next", f
# external deps
clap = { version = "2", features = ["yaml"] }
devtimer = "4.0.1"
rand = "0.8.4"
rand = "0.8.5"
serde = { version = "1.0.136", features = ["derive"] }
serde_json = "1.0.78"
serde_json = "1.0.79"

@ -2,7 +2,7 @@
authors = ["Sayan Nandan <ohsayan@outlook.com>"]
edition = "2021"
name = "sky_macros"
version = "0.7.3-alpha.3"
version = "0.7.3"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
@ -13,5 +13,5 @@ proc-macro = true
# external deps
proc-macro2 = "1.0.36"
quote = "1.0.15"
rand = "0.8.4"
rand = "0.8.5"
syn = { version = "1.0.86", features = ["full"] }

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

@ -12,11 +12,11 @@ libstress = { path = "../libstress" }
skytable = { git = "https://github.com/skytable/client-rust.git", branch = "next", features = [
"dbg",
] }
sysinfo = "0.23.1"
sysinfo = "0.23.2"
devtimer = "4.0.1"
# external deps
env_logger = "0.9.0"
log = "0.4.14"
rand = "0.8.4"
rand = "0.8.5"
crossbeam-channel = "0.5.2"
num_cpus = "1.13.1"

Loading…
Cancel
Save