chore: cleanup dependency versions
This commit is contained in:
parent
ad98cfafb2
commit
f88ba24dc4
8 changed files with 51 additions and 42 deletions
15
Cargo.lock
generated
15
Cargo.lock
generated
|
|
@ -204,8 +204,6 @@ version = "0.1.0"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"anyhow",
|
"anyhow",
|
||||||
"clap",
|
"clap",
|
||||||
"minisql",
|
|
||||||
"parser",
|
|
||||||
"proto",
|
"proto",
|
||||||
"tokio",
|
"tokio",
|
||||||
]
|
]
|
||||||
|
|
@ -578,7 +576,6 @@ dependencies = [
|
||||||
"parser",
|
"parser",
|
||||||
"proto",
|
"proto",
|
||||||
"rand",
|
"rand",
|
||||||
"serde_json",
|
|
||||||
"tokio",
|
"tokio",
|
||||||
]
|
]
|
||||||
|
|
||||||
|
|
@ -647,18 +644,18 @@ dependencies = [
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "thiserror"
|
name = "thiserror"
|
||||||
version = "1.0.50"
|
version = "1.0.56"
|
||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
checksum = "f9a7210f5c9a7156bb50aa36aed4c95afb51df0df00713949448cf9e97d382d2"
|
checksum = "d54378c645627613241d077a3a79db965db602882668f9136ac42af9ecb730ad"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"thiserror-impl",
|
"thiserror-impl",
|
||||||
]
|
]
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "thiserror-impl"
|
name = "thiserror-impl"
|
||||||
version = "1.0.50"
|
version = "1.0.56"
|
||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
checksum = "266b2e40bc00e5a6c09c3584011e08b06f123c00362c92b975ba9843aaaa14b8"
|
checksum = "fa0faa943b50f3db30a20aa7e265dbc66076993efed8463e8de414e5d06d3471"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"proc-macro2 1.0.78",
|
"proc-macro2 1.0.78",
|
||||||
"quote 1.0.35",
|
"quote 1.0.35",
|
||||||
|
|
@ -667,9 +664,9 @@ dependencies = [
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "tokio"
|
name = "tokio"
|
||||||
version = "1.35.1"
|
version = "1.36.0"
|
||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
checksum = "c89b4efa943be685f629b149f53829423f8f5531ea21249408e8e2f8671ec104"
|
checksum = "61285f6515fa018fb2d1e46eb21223fff441ee8db5d0f1435e8ab4f5cdb80931"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"backtrace",
|
"backtrace",
|
||||||
"bytes",
|
"bytes",
|
||||||
|
|
|
||||||
11
Cargo.toml
11
Cargo.toml
|
|
@ -8,3 +8,14 @@ members = [
|
||||||
"parser",
|
"parser",
|
||||||
"storage_engine"
|
"storage_engine"
|
||||||
]
|
]
|
||||||
|
|
||||||
|
[workspace.dependencies]
|
||||||
|
anyhow = "1.0.79"
|
||||||
|
async-trait = "0.1.77"
|
||||||
|
bimap = "0.6.3"
|
||||||
|
bincode = "2.0.0-rc.3"
|
||||||
|
clap = "4.4.18"
|
||||||
|
rand = "0.8.5"
|
||||||
|
serde = "1.0.196"
|
||||||
|
thiserror = "1.0.56"
|
||||||
|
tokio = "1.36.0"
|
||||||
|
|
|
||||||
|
|
@ -6,9 +6,8 @@ edition = "2021"
|
||||||
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
tokio = { version = "1.35.1", features = ["full"] }
|
anyhow = { workspace = true }
|
||||||
anyhow = "1.0.76"
|
clap = { workspace = true, features = ["derive"] }
|
||||||
|
tokio = { workspace = true, features = ["full"] }
|
||||||
|
|
||||||
proto = { path = "../proto" }
|
proto = { path = "../proto" }
|
||||||
minisql = { path = "../minisql" }
|
|
||||||
parser = { path = "../parser" }
|
|
||||||
clap = { version = "4.4.18", features = ["derive"] }
|
|
||||||
|
|
@ -7,13 +7,14 @@ rust-version = "1.74"
|
||||||
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
anyhow = "1.0.79"
|
anyhow = { workspace = true }
|
||||||
async-trait = "0.1.77"
|
async-trait = { workspace = true }
|
||||||
bimap = { version = "0.6.3", features = ["serde"] }
|
bimap = { workspace = true, features = ["serde"] }
|
||||||
bincode = "2.0.0-rc.3"
|
bincode = { workspace = true }
|
||||||
serde = { version = "1.0.196", features = ["derive", "rc"] }
|
serde = { workspace = true, features = ["derive", "rc"] }
|
||||||
tokio = { version = "1.34.0", features = ["full"] }
|
serde_json = "1.0.113"
|
||||||
thiserror = "1.0.50"
|
thiserror = { workspace = true }
|
||||||
|
tokio = { workspace = true, features = ["full"] }
|
||||||
|
|
||||||
proto = { path = "../proto" }
|
proto = { path = "../proto" }
|
||||||
storage_engine = { path = "../storage_engine" }
|
storage_engine = { path = "../storage_engine" }
|
||||||
serde_json = "1.0.113"
|
|
||||||
|
|
|
||||||
|
|
@ -6,8 +6,9 @@ edition = "2021"
|
||||||
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
nom-peg = "0.1.1"
|
bimap = { workspace = true }
|
||||||
nom = "7.1.3"
|
nom = "7.1.3"
|
||||||
|
nom-peg = "0.1.1"
|
||||||
|
thiserror = { workspace = true }
|
||||||
|
|
||||||
minisql = { path = "../minisql" }
|
minisql = { path = "../minisql" }
|
||||||
bimap = "0.6.3"
|
|
||||||
thiserror = "1"
|
|
||||||
|
|
@ -4,10 +4,10 @@ version = "0.1.0"
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
bincode = "2.0.0-rc.3"
|
async-trait = { workspace = true }
|
||||||
tokio = { version = "1.34.0", features = ["io-util", "macros", "test-util"] }
|
bincode = { workspace = true }
|
||||||
async-trait = "0.1.74"
|
rand = { workspace = true }
|
||||||
thiserror = "1.0.50"
|
|
||||||
rand_seeder = "0.2.3"
|
|
||||||
rand_pcg = "0.3.1"
|
rand_pcg = "0.3.1"
|
||||||
rand = "0.8.5"
|
rand_seeder = "0.2.3"
|
||||||
|
thiserror = { workspace = true }
|
||||||
|
tokio = { workspace = true, features = ["io-util", "macros", "test-util"] }
|
||||||
|
|
|
||||||
|
|
@ -6,12 +6,12 @@ edition = "2021"
|
||||||
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
tokio = { version = "1.35.1", features = ["full"] }
|
tokio = { workspace = true, features = ["full"] }
|
||||||
anyhow = "1.0.76"
|
anyhow = { workspace = true }
|
||||||
clap = { version = "4.4.18", features = ["derive"] }
|
clap = { workspace = true, features = ["derive"] }
|
||||||
async-trait = "0.1.74"
|
async-trait = { workspace = true }
|
||||||
rand = "0.8.5"
|
rand = { workspace = true }
|
||||||
serde_json = "1.0.112"
|
|
||||||
minisql = { path = "../minisql" }
|
minisql = { path = "../minisql" }
|
||||||
|
parser = { path = "../parser" }
|
||||||
proto = { path = "../proto" }
|
proto = { path = "../proto" }
|
||||||
parser = { path = "../parser" }
|
|
||||||
|
|
@ -4,7 +4,7 @@ version = "0.1.0"
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
bincode = "2.0.0-rc.3"
|
async-trait = { workspace = true }
|
||||||
tokio = { version = "1.34.0", features = ["full"] }
|
bincode = { workspace = true }
|
||||||
async-trait = "0.1.74"
|
thiserror = { workspace = true }
|
||||||
thiserror = "1.0.50"
|
tokio = { workspace = true, features = ["full"] }
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue