Skip to content

Commit a62181a

Browse files
build(deps): bump tower from 0.4.10 to 0.4.11 (linkerd#1385)
Bumps [tower](https://github.com/tower-rs/tower) from 0.4.10 to 0.4.11. - [Release notes](https://github.com/tower-rs/tower/releases) - [Commits](tower-rs/tower@tower-0.4.10...tower-0.4.11) --- updated-dependencies: - dependency-name: tower dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1 parent 38240b1 commit a62181a

File tree

27 files changed

+30
-30
lines changed

27 files changed

+30
-30
lines changed

Cargo.lock

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

25512551
[[package]]
25522552
name = "tower"
2553-
version = "0.4.10"
2553+
version = "0.4.11"
25542554
source = "registry+https://github.com/rust-lang/crates.io-index"
2555-
checksum = "c00e500fff5fa1131c866b246041a6bf96da9c965f8fe4128cb1421f23e93c00"
2555+
checksum = "5651b5f6860a99bd1adb59dbfe1db8beb433e73709d9032b413a77e2fb7c066a"
25562556
dependencies = [
25572557
"futures-core",
25582558
"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.10", default-features = false, features = ["load"] }
14+
tower = { version = "0.4.11", 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.8", features = ["time", "sync"] }
3030
tonic = { version = "0.6", default-features = false, features = ["prost"] }
31-
tower = "0.4.10"
31+
tower = "0.4.11"
3232
tracing = "0.1.29"

linkerd/app/core/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ parking_lot = "0.11"
6868
pin-project = "1"
6969

7070
[dependencies.tower]
71-
version = "0.4.10"
71+
version = "0.4.11"
7272
default-features = false
7373
features = [
7474
"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.10", default-features = false }
17+
tower = { version = "0.4.11", 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.10", default-features = false, features = ["util"] }
23+
tower = { version = "0.4.11", 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.6", default-features = false }
24-
tower = { version = "0.4.10", features = ["util"] }
24+
tower = { version = "0.4.11", 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
@@ -35,7 +35,7 @@ tokio = { version = "1", features = ["io-util", "net", "rt", "macros"] }
3535
tokio-stream = { version = "0.1.8", features = ["sync"] }
3636
tokio-rustls = "0.23.1"
3737
rustls-pemfile = "0.2.1"
38-
tower = { version = "0.4.10", default-features = false }
38+
tower = { version = "0.4.11", default-features = false }
3939
tonic = { version = "0.6", default-features = false }
4040
tracing = "0.1.29"
4141
tracing-subscriber = { version = "0.3", default-features = false, features = ["fmt", "std"] }

linkerd/app/outbound/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ linkerd-retry = { path = "../../retry" }
2626
parking_lot = "0.11"
2727
thiserror = "1.0"
2828
tokio = { version = "1", features = ["sync"] }
29-
tower = { version = "0.4.10", features = ["util"] }
29+
tower = { version = "0.4.11", features = ["util"] }
3030
tracing = "0.1.29"
3131
pin-project = "1"
3232

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.8", features = ["sync"] }
32-
tower = { version = "0.4.10", default-features = false}
32+
tower = { version = "0.4.11", default-features = false}
3333
tracing = "0.1.29"
3434
tracing-subscriber = { version = "0.3", features = ["env-filter", "fmt", "std"], 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 = ["macros", "rt", "sync", "time"] }
15-
tower = { version = "0.4.10", default-features = false, features = ["util"] }
15+
tower = { version = "0.4.11", default-features = false, features = ["util"] }
1616
tracing = "0.1.29"
1717

1818
[dev-dependencies]

0 commit comments

Comments
 (0)