Skip to content

Commit e4d8325

Browse files
authored
Update dependencies (#697)
* Use workspace dependencies for derive_builder * Update derive_builder to 0.20 * Update enum-iterator to 2 * Update itertools to 0.12 * Update nix to 0.28
1 parent 89816bf commit e4d8325

File tree

4 files changed

+7
-6
lines changed

4 files changed

+7
-6
lines changed

Cargo.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ license = "MIT"
77
license-file = "LICENSE.txt"
88

99
[workspace.dependencies]
10+
derive_builder = "0.20"
1011
derive_more = { version = "0.99", default-features = false, features = ["constructor", "display", "from", "into"] }
1112
once_cell = "1.16"
1213
tonic = "0.9"

client/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ categories = ["development-tools"]
1414
anyhow = "1.0"
1515
async-trait = "0.1"
1616
backoff = "0.4"
17-
derive_builder = "0.12"
17+
derive_builder = { workspace = true }
1818
derive_more = "0.99"
1919
futures = "0.3"
2020
futures-retry = "0.6.0"

core-api/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ otel_impls = ["opentelemetry"]
1717

1818
[dependencies]
1919
async-trait = "0.1"
20-
derive_builder = "0.12"
20+
derive_builder = { workspace = true }
2121
derive_more = { workspace = true }
2222
opentelemetry = { workspace = true, optional = true }
2323
prost-types = "0.11"

core/Cargo.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -30,20 +30,20 @@ console-subscriber = { version = "0.1", optional = true }
3030
crossbeam-channel = "0.5"
3131
crossbeam-queue = "0.3"
3232
dashmap = "5.5"
33-
derive_builder = "0.12"
33+
derive_builder = { workspace = true }
3434
derive_more = { workspace = true }
3535
enum_dispatch = "0.3"
36-
enum-iterator = "1.4"
36+
enum-iterator = "2"
3737
flate2 = { version = "1.0", optional = true }
3838
futures = "0.3"
3939
futures-util = "0.3"
4040
governor = "0.6"
4141
http = "0.2"
4242
hyper = "0.14"
43-
itertools = "0.11"
43+
itertools = "0.12"
4444
lru = "0.11"
4545
mockall = "0.11"
46-
nix = { version = "0.27", optional = true, features = ["process", "signal"] }
46+
nix = { version = "0.28", optional = true, features = ["process", "signal"] }
4747
once_cell = { workspace = true }
4848
opentelemetry = { workspace = true, features = ["metrics"] }
4949
opentelemetry_sdk = { version = "0.21", features = ["rt-tokio", "metrics"] }

0 commit comments

Comments
 (0)