Skip to content

Commit

Permalink
Upgrade tower to 0.5, use workspace dependency
Browse files Browse the repository at this point in the history
Signed-off-by: Brian L. Troutwine <[email protected]>
  • Loading branch information
blt committed Nov 12, 2024
1 parent e9b406e commit 8eb0c5a
Show file tree
Hide file tree
Showing 5 changed files with 29 additions and 9 deletions.
29 changes: 23 additions & 6 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

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.5", 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, default-features = false, features = [
"timeout",
"limit",
"load-shed",
Expand Down
3 changes: 2 additions & 1 deletion integration/sheepdog/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -26,10 +26,11 @@ 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",
"util",
] }
tracing = { version = "0.1", features = ["std", "attributes"] }
tracing-subscriber = { version = "0.3", features = ["std", "env-filter"] }
3 changes: 2 additions & 1 deletion lading/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -75,10 +75,11 @@ 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",
"util",
] }
tracing = { workspace = true }
tracing-subscriber = { version = "0.3", features = ["std", "env-filter"] }
Expand Down

0 comments on commit 8eb0c5a

Please sign in to comment.