-
Notifications
You must be signed in to change notification settings - Fork 124
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
treewide: Use workspace dependencies
To make versioning more consistent, to make upgrades easier, and to reduce the number of duplicates in our dependency graph, this commit replaces all of the crate-specific package versions with universal workspace dependencies. Change-Id: I95db5ded6d4ac1b530751d2a873240c5d023a5b4
- Loading branch information
Showing
57 changed files
with
910 additions
and
798 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,5 +6,5 @@ authors = ["ReadySet Technology, Inc. <[email protected]>"] | |
edition = "2021" | ||
|
||
[dependencies] | ||
serde = { version = "1.0.137", features = ["derive"] } | ||
thiserror = "1.0.31" | ||
serde = { workspace = true, features = ["derive"] } | ||
thiserror = { workspace = true } |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,45 +6,45 @@ authors = ["ReadySet Technology, Inc. <[email protected]>"] | |
edition = "2021" | ||
|
||
[dependencies] | ||
crossbeam-skiplist = "0.1.1" | ||
crossbeam-skiplist = { workspace = true } | ||
tokio = { workspace = true, features = ["full"] } | ||
anyhow = "1.0.38" | ||
csv = "1.2" | ||
nom = "7.1" | ||
nom_locate = "4.0.0" | ||
rand = "0.8.3" | ||
rand_distr = "0.4" | ||
tracing = "0.1.29" | ||
async-trait = "0.1" | ||
enum_dispatch = "0.3.7" | ||
futures = "0.3" | ||
vec1 = "1.8.0" | ||
url = "2.2.2" | ||
hdrhistogram = "7.4" | ||
zipf = "7.0.0" | ||
anyhow = { workspace = true } | ||
csv = { workspace = true } | ||
nom = { workspace = true } | ||
nom_locate = { workspace = true } | ||
rand = { workspace = true } | ||
rand_distr = { workspace = true } | ||
tracing = { workspace = true } | ||
async-trait = { workspace = true } | ||
enum_dispatch = { workspace = true } | ||
futures = { workspace = true } | ||
vec1 = { workspace = true } | ||
url = { workspace = true } | ||
hdrhistogram = { workspace = true } | ||
zipf = { workspace = true } | ||
clap = { workspace = true, features = ["derive", "env"] } | ||
reqwest = { version = "0.11.20", features = ["stream", "native-tls"] } | ||
chrono = "0.4" | ||
atomic-counter = "1.0.1" | ||
serde_json = "1.0" | ||
serde_yaml = "0.8" | ||
serde = "1.0" | ||
serde_with = "1.12" | ||
reqwest = { workspace = true, features = ["stream", "native-tls"] } | ||
chrono = { workspace = true } | ||
atomic-counter = { workspace = true } | ||
serde_json = { workspace = true } | ||
serde_yaml = { workspace = true } | ||
serde = { workspace = true } | ||
serde_with = { workspace = true } | ||
metrics = { workspace = true } | ||
metrics-util = { workspace = true } | ||
metrics-exporter-prometheus = { workspace = true } | ||
itertools = "0.10" | ||
num-integer = "0.1.44" | ||
lazy_static = "1.4.0" | ||
thiserror = "1.0.30" | ||
async-stream = "0.3.2" | ||
parking_lot = "0.11.2" | ||
indicatif = "0.17" | ||
prometheus-parse = "0.2.2" | ||
walkdir = "2.3" | ||
itertools = { workspace = true } | ||
num-integer = { workspace = true } | ||
lazy_static = { workspace = true } | ||
thiserror = { workspace = true } | ||
async-stream = { workspace = true } | ||
parking_lot = { workspace = true } | ||
indicatif = { workspace = true } | ||
prometheus-parse = { workspace = true } | ||
walkdir = { workspace = true } | ||
tokio-postgres = { workspace = true } | ||
vmemcached = "0.5.0" | ||
redis = { version = "0.23.3", features = ["tokio-comp", "aio"] } | ||
vmemcached = { workspace = true } | ||
redis = { workspace = true, features = ["tokio-comp", "aio"] } | ||
|
||
# local dependencies | ||
database-utils = { path = "../database-utils" } | ||
|
@@ -96,8 +96,8 @@ path = "src/bin/snapshot_time.rs" | |
[features] | ||
|
||
[dev-dependencies] | ||
indoc = "1.0.3" | ||
itertools = "0.10" | ||
proptest = "1.0.0" | ||
test-strategy = "0.2.0" | ||
url = "2.2.2" | ||
indoc = { workspace = true } | ||
itertools = { workspace = true } | ||
proptest = { workspace = true } | ||
test-strategy = { workspace = true } | ||
url = { workspace = true } |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,9 +6,9 @@ authors = ["ReadySet Technology, Inc. <[email protected]>"] | |
edition = "2021" | ||
|
||
[dependencies] | ||
syn = { version = "1.0.57", features = ["full", "parsing", "printing", "visit", "visit-mut", "extra-traits"] } | ||
quote = "1.0.8" | ||
proc-macro2 = "1" | ||
syn = { workspace = true, features = ["full", "parsing", "printing", "visit", "visit-mut", "extra-traits"] } | ||
quote = { workspace = true } | ||
proc-macro2 = { workspace = true } | ||
|
||
[lib] | ||
proc-macro = true |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,24 +6,24 @@ authors = ["ReadySet Technology, Inc. <[email protected]>"] | |
edition = "2021" | ||
|
||
[dependencies] | ||
anyhow = "1.0.38" | ||
bit-vec = { version = "0.6", features = ["serde"] } | ||
chrono = "0.4.19" | ||
anyhow = { workspace = true } | ||
bit-vec = { workspace = true, features = ["serde"] } | ||
chrono = { workspace = true } | ||
eui48 = { workspace = true } | ||
growable-bloom-filter = "2.0.1" | ||
rand = "0.8.3" | ||
rand_regex = "0.15.1" | ||
rust_decimal = "1.26" | ||
uuid = "0.8" | ||
zipf = "7.0.0" | ||
growable-bloom-filter = { workspace = true } | ||
rand = { workspace = true } | ||
rand_regex = { workspace = true } | ||
rust_decimal = { workspace = true } | ||
uuid = { workspace = true } | ||
zipf = { workspace = true } | ||
|
||
nom-sql = { path = "../nom-sql" } | ||
readyset-data = { path = "../readyset-data/" } | ||
|
||
[dev-dependencies] | ||
test-strategy = "0.2.0" | ||
proptest = "1.0.0" | ||
test-strategy = { workspace = true } | ||
proptest = { workspace = true } | ||
mysql_async = { workspace = true } | ||
tokio = { workspace = true, features = ["full"] } | ||
serial_test = "0.5" | ||
serial_test = { workspace = true } | ||
test-utils = { path = "../test-utils" } |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,19 +6,19 @@ authors = ["ReadySet Technology, Inc. <[email protected]>"] | |
edition = "2021" | ||
|
||
[dependencies] | ||
derive_more = "0.99.17" | ||
futures = "0.3.21" | ||
derive_more = { workspace = true } | ||
futures = { workspace = true } | ||
mysql_async = { workspace = true } | ||
native-tls = "0.2.8" | ||
thiserror = "1.0.30" | ||
native-tls = { workspace = true } | ||
thiserror = { workspace = true } | ||
tokio = { workspace = true, features = ["full"] } | ||
tokio-postgres = { workspace = true, features = ["with-chrono-0_4"] } | ||
postgres-native-tls = { workspace = true } | ||
clap = { workspace = true, features = ["derive","env"] } | ||
serde = { version = "1.0", features = ["derive"] } | ||
serde = { workspace = true, features = ["derive"] } | ||
readyset-util = { path = "../readyset-util" } | ||
readyset-errors = { path = "../readyset-errors" } | ||
async-trait = "0.1" | ||
async-trait = { workspace = true } | ||
nom-sql = { path = "../nom-sql" } | ||
deadpool-postgres = "0.10.3" | ||
num_cpus = "1.15.0" | ||
deadpool-postgres = { workspace = true } | ||
num_cpus = { workspace = true } |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,17 +6,17 @@ authors = ["ReadySet Technology, Inc. <[email protected]>"] | |
edition = "2021" | ||
|
||
[dependencies] | ||
chrono = { version = "0.4.0", features = ["serde"] } | ||
chrono-tz = { version = "0.8.6", features = ["serde"] } | ||
serde = { version = "1.0.8", features = ["derive"] } | ||
serde_json = { version = "1.0" } | ||
rust_decimal = { version = "1.26" } | ||
lazy_static = "1.4.0" | ||
regex = "1.4.3" | ||
itertools = "0.10.3" | ||
vec1 = "1.6" | ||
proptest = "1.0.0" | ||
test-strategy = "0.2.0" | ||
chrono = { workspace = true, features = ["serde"] } | ||
chrono-tz = { workspace = true, features = ["serde"] } | ||
serde = { workspace = true, features = ["derive"] } | ||
serde_json = { workspace = true } | ||
rust_decimal = { workspace = true } | ||
lazy_static = { workspace = true } | ||
regex = { workspace = true } | ||
itertools = { workspace = true } | ||
vec1 = { workspace = true } | ||
proptest = { workspace = true } | ||
test-strategy = { workspace = true } | ||
|
||
# Local deps | ||
readyset-util = { path = "../readyset-util" } | ||
|
Oops, something went wrong.