Skip to content

Commit 7b909b0

Browse files
committed
Migrate all tower use to workspace
This commit migrates all `tower` crate use to derive from the workspace. This is intended to make updating tower easier. Signed-off-by: Brian L. Troutwine <[email protected]>
1 parent e89f160 commit 7b909b0

File tree

4 files changed

+4
-3
lines changed

4 files changed

+4
-3
lines changed

Diff for: Cargo.toml

+1
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@ serde = { version = "1.0", features = ["std", "derive"] }
2525
serde_json = { version = "1.0", features = ["std"] }
2626
thiserror = { version = "1.0" }
2727
tokio = { version = "1.41" }
28+
tower = { version = "0.4", default-features = false }
2829
tracing = { version = "0.1" }
2930
uuid = { version = "1.11", default-features = false, features = [
3031
"v4",

Diff for: integration/ducks/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ tonic = { version = "0.9", default-features = false, features = [
3030
"transport",
3131
"prost",
3232
] }
33-
tower = { version = "0.4", default-features = false, features = [
33+
tower = { workspace = true, features = [
3434
"timeout",
3535
"limit",
3636
"load-shed",

Diff for: integration/sheepdog/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ tonic = { version = "0.9", default-features = false, features = [
2626
"transport",
2727
"prost",
2828
] }
29-
tower = { version = "0.4", default-features = false, features = [
29+
tower = { workspace = true, features = [
3030
"timeout",
3131
"limit",
3232
"load-shed",

Diff for: lading/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ tokio = { workspace = true, features = [
7676
tokio-stream = { version = "0.1", features = ["io-util"] }
7777
tokio-util = { version = "0.7", features = ["io"] }
7878
tonic = { version = "0.9" }
79-
tower = { version = "0.4", default-features = false, features = [
79+
tower = { workspace = true, features = [
8080
"timeout",
8181
"limit",
8282
"load-shed",

0 commit comments

Comments
 (0)