Skip to content

Commit

Permalink
Migrate all tower use to workspace
Browse files Browse the repository at this point in the history
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 <brian.troutwine@datadoghq.com>
  • Loading branch information
blt committed Dec 17, 2024
1 parent e89f160 commit 7b909b0
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 3 deletions.
1 change: 1 addition & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ serde = { version = "1.0", features = ["std", "derive"] }
serde_json = { version = "1.0", features = ["std"] }
thiserror = { version = "1.0" }
tokio = { version = "1.41" }
tower = { version = "0.4", default-features = false }
tracing = { version = "0.1" }
uuid = { version = "1.11", default-features = false, features = [
"v4",
Expand Down
2 changes: 1 addition & 1 deletion integration/ducks/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ tonic = { version = "0.9", default-features = false, features = [
"transport",
"prost",
] }
tower = { version = "0.4", default-features = false, features = [
tower = { workspace = true, features = [
"timeout",
"limit",
"load-shed",
Expand Down
2 changes: 1 addition & 1 deletion integration/sheepdog/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ tonic = { version = "0.9", default-features = false, features = [
"transport",
"prost",
] }
tower = { version = "0.4", default-features = false, features = [
tower = { workspace = true, features = [
"timeout",
"limit",
"load-shed",
Expand Down
2 changes: 1 addition & 1 deletion lading/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ tokio = { workspace = true, features = [
tokio-stream = { version = "0.1", features = ["io-util"] }
tokio-util = { version = "0.7", features = ["io"] }
tonic = { version = "0.9" }
tower = { version = "0.4", default-features = false, features = [
tower = { workspace = true, features = [
"timeout",
"limit",
"load-shed",
Expand Down

0 comments on commit 7b909b0

Please sign in to comment.