Skip to content

Commit 7a88366

Browse files
build(deps): bump tower from 0.4.9 to 0.4.10 (#1320)
Bumps [tower](https://github.com/tower-rs/tower) from 0.4.9 to 0.4.10. - [Release notes](https://github.com/tower-rs/tower/releases) - [Commits](tower-rs/tower@tower-0.4.9...tower-0.4.10) --- updated-dependencies: - dependency-name: tower dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1 parent ec441e5 commit 7a88366

File tree

29 files changed

+32
-32
lines changed

29 files changed

+32
-32
lines changed

Cargo.lock

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2268,9 +2268,9 @@ dependencies = [
22682268

22692269
[[package]]
22702270
name = "tower"
2271-
version = "0.4.9"
2271+
version = "0.4.10"
22722272
source = "registry+https://github.com/rust-lang/crates.io-index"
2273-
checksum = "d15a6b60cdff0cb039d81d3b37f8bc3d7e53dca09069aae3ef2502ca4834fe30"
2273+
checksum = "c00e500fff5fa1131c866b246041a6bf96da9c965f8fe4128cb1421f23e93c00"
22742274
dependencies = [
22752275
"futures-core",
22762276
"futures-util",

hyper-balance/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ futures = { version = "0.3", default-features = false }
1111
http = "0.2"
1212
hyper = "0.14"
1313
pin-project = "1"
14-
tower = { version = "0.4.9", default-features = false, features = ["load"] }
14+
tower = { version = "0.4.10", default-features = false, features = ["load"] }
1515
tokio = { version = "1", features = ["macros"] }
1616

1717
[dev-dependencies]

linkerd/app/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,5 +28,5 @@ thiserror = "1.0"
2828
tokio = { version = "1", features = ["rt"] }
2929
tokio-stream = { version = "0.1.7", features = ["time", "sync"] }
3030
tonic = { version = "0.5", default-features = false, features = ["prost"] }
31-
tower = "0.4.9"
31+
tower = "0.4.10"
3232
tracing = "0.1.29"

linkerd/app/core/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ parking_lot = "0.11"
7171
pin-project = "1"
7272

7373
[dependencies.tower]
74-
version = "0.4.9"
74+
version = "0.4.10"
7575
default-features = false
7676
features = [
7777
"buffer",

linkerd/app/gateway/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,12 +14,12 @@ linkerd-app-inbound = { path = "../inbound" }
1414
linkerd-app-outbound = { path = "../outbound" }
1515
thiserror = "1.0"
1616
tokio = { version = "1", features = ["sync"] }
17-
tower = { version = "0.4.9", default-features = false }
17+
tower = { version = "0.4.10", default-features = false }
1818
tracing = "0.1.29"
1919

2020
[dev-dependencies]
2121
tokio = { version = "1", features = ["rt", "macros"] }
2222
tokio-test = "0.4"
23-
tower = { version = "0.4.9", default-features = false, features = ["util"] }
23+
tower = { version = "0.4.10", default-features = false, features = ["util"] }
2424
tower-test = "0.4"
2525
linkerd-app-test = { path = "../test" }

linkerd/app/inbound/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ parking_lot = "0.11"
2121
thiserror = "1.0"
2222
tokio = { version = "1", features = ["sync"] }
2323
tonic = { version = "0.5", default-features = false }
24-
tower = { version = "0.4.9", features = ["util"] }
24+
tower = { version = "0.4.10", features = ["util"] }
2525
tracing = "0.1.29"
2626

2727
[target.'cfg(fuzzing)'.dependencies]

linkerd/app/integration/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ socket2 = "0.4"
3434
tokio = { version = "1", features = ["io-util", "net", "rt", "macros"] }
3535
tokio-stream = { version = "0.1.7", features = ["sync"] }
3636
tokio-rustls = "0.22"
37-
tower = { version = "0.4.9", default-features = false }
37+
tower = { version = "0.4.10", default-features = false }
3838
tonic = { version = "0.5", default-features = false }
3939
tracing = "0.1.29"
4040
webpki = "0.21"

linkerd/app/outbound/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ linkerd-identity = { path = "../../identity" }
2424
parking_lot = "0.11"
2525
thiserror = "1.0"
2626
tokio = { version = "1", features = ["sync"] }
27-
tower = { version = "0.4.9", features = ["util"] }
27+
tower = { version = "0.4.10", features = ["util"] }
2828
tracing = "0.1.29"
2929
pin-project = "1"
3030

linkerd/app/test/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ regex = "1"
2929
tokio = { version = "1", features = ["io-util", "net", "rt", "sync"]}
3030
tokio-test = "0.4"
3131
tokio-stream = { version = "0.1.7", features = ["sync"] }
32-
tower = { version = "0.4.9", default-features = false}
32+
tower = { version = "0.4.10", default-features = false}
3333
tracing = "0.1.29"
3434
tracing-subscriber = { version = "0.2.25", features = ["env-filter", "fmt"], default-features = false }
3535
thiserror = "1"

linkerd/cache/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ linkerd-error = { path = "../error" }
1212
linkerd-stack = { path = "../stack" }
1313
parking_lot = "0.11"
1414
tokio = { version = "1", default-features = false, features = ["rt", "sync", "time"] }
15-
tower = { version = "0.4.9", default-features = false, features = ["util"] }
15+
tower = { version = "0.4.10", default-features = false, features = ["util"] }
1616
tracing = "0.1.29"
1717

1818
[dev-dependencies]

0 commit comments

Comments
 (0)