Upgrade deps and fix actiondoc script

Closes #111 and closes #112

Signed-off-by: Sayan Nandan <nandansayan@outlook.com>
next
Sayan Nandan 4 years ago
parent 28f0666914
commit e10cc1411f
No known key found for this signature in database
GPG Key ID: C31EFD7DDA12AEE0

16
Cargo.lock generated

@ -627,18 +627,18 @@ checksum = "d29ab0c6d3fc0ee92fe66e2d99f700eab17a8d57d1c1d3b748380fb20baa78cd"
[[package]]
name = "serde"
version = "1.0.124"
version = "1.0.125"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "bd761ff957cb2a45fbb9ab3da6512de9de55872866160b23c25f1a841e99d29f"
checksum = "558dc50e1a5a5fa7112ca2ce4effcb321b0300c0d4ccf0776a9f60cd89031171"
dependencies = [
"serde_derive",
]
[[package]]
name = "serde_derive"
version = "1.0.124"
version = "1.0.125"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1800f7693e94e186f5e25a28291ae1570da908aff7d97a095dec1e56ff99069b"
checksum = "b093b7a2bb58203b5da3056c05b4ec1fed827dcfdb37347a8841695263b3d06d"
dependencies = [
"proc-macro2",
"quote",
@ -757,9 +757,9 @@ checksum = "8ea5119cdb4c55b55d432abb513a0429384878c15dde60cc77b1c99de1a95a6a"
[[package]]
name = "syn"
version = "1.0.64"
version = "1.0.66"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3fd9d1e9976102a03c542daa2eff1b43f9d72306342f3f8b3ed5fb8908195d6f"
checksum = "3c193d6a9455d05405156b3a4cc04bd20b9ca1745bf6198e1258418f852b967b"
dependencies = [
"proc-macro2",
"quote",
@ -797,9 +797,9 @@ dependencies = [
[[package]]
name = "tokio"
version = "1.3.0"
version = "1.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8d56477f6ed99e10225f38f9f75f872f29b8b8bd8c0b946f63345bb144e9eeda"
checksum = "134af885d758d645f0f0505c9a8b3f9bf8a348fd822e112ab5248138348f1722"
dependencies = [
"autocfg",
"bytes",

@ -6,8 +6,8 @@
cd ..
git clone https://github.com/skytable/docs.git
cd docs
chmod +x doc
./doc
chmod +x doc.sh
./doc.sh
git add . && git commit -m "Updated docs from upstream" -m "Triggered by ${GITHUB_SHA}" --author "$C_USER <$C_MAIL>"
eval '${BOT_API}'
} >>/dev/null

@ -8,7 +8,7 @@ edition = "2018"
[dependencies]
libsky = {path = "../libsky"}
tokio = {version = "1.3.0", features = ["full"]}
tokio = {version = "1.4.0", features = ["full"]}
bytes = "1.0.1"
regex = "1.4.5"
lazy_static = "1.4.0"

@ -7,15 +7,15 @@ edition = "2018"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
tokio = { version = "1.3.0", features = ["full"] }
tokio = { version = "1.4.0", features = ["full"] }
bytes = "1.0.1"
libsky = {path ="../libsky"}
bincode = "1.3.2"
parking_lot = "0.11.1"
lazy_static = "1.4.0"
serde_derive = "1.0.124"
serde_derive = "1.0.125"
futures = "0.3.13"
serde = {version = "1.0.124", features= ["derive"]}
serde = {version = "1.0.125", features= ["derive"]}
toml = "0.5.8"
clap = {version = "2.33.3", features=["yaml"]}
env_logger = "0.8.3"
@ -29,4 +29,4 @@ openssl = { version = "0.10.33", features = ["vendored"] }
jemallocator = "0.3.2"
[dev-dependencies]
tokio = { version = "1.3.0", features = ["test-util"] }
tokio = { version = "1.4.0", features = ["test-util"] }

@ -11,5 +11,5 @@ rand = "0.8.3"
devtimer = "4.0.1"
libsky = {path="../libsky"}
clap = {version = "2.33.3", features=["yaml"]}
serde = {version="1.0.124", features=["derive"]}
serde = {version="1.0.125", features=["derive"]}
serde_json = "1.0.64"

@ -10,7 +10,7 @@ edition = "2018"
proc-macro = true
[dependencies]
syn = {version = "1.0.64", features = ["full"]}
syn = {version = "1.0.65", features = ["full"]}
quote = "1.0.9"
rand = "0.8.3"
proc-macro2 = "1.0.24"

Loading…
Cancel
Save