Skip to content

Commit b79c0c7

Browse files
authored
chore: Remove unused dependency (#822)
1 parent 6a3ab07 commit b79c0c7

File tree

3 files changed

+7
-5
lines changed

3 files changed

+7
-5
lines changed

.github/workflows/CI.yml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,9 @@ jobs:
4141
- name: "install Rust nightly"
4242
uses: dtolnay/rust-toolchain@nightly
4343
- name: Select minimal versions
44-
run: cargo update -Z minimal-versions
44+
run: |
45+
cargo update -Z minimal-versions
46+
cargo update -p lazy_static --precise 1.5.0
4547
- name: Check
4648
run: |
4749
rustup default ${{ env.MSRV }}
@@ -90,7 +92,9 @@ jobs:
9092
- name: "install Rust nightly"
9193
uses: dtolnay/rust-toolchain@nightly
9294
- name: Select minimal versions
93-
run: cargo update -Z minimal-versions
95+
run: |
96+
cargo update -Z minimal-versions
97+
cargo update -p lazy_static --precise 1.5.0
9498
- name: test
9599
run: |
96100
rustup default ${{ env.MSRV }}

Cargo.toml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,6 @@ futures-util = { version = "0.3.22", default-features = false }
1414
hdrhistogram = { version = "7.0", default-features = false }
1515
http = "1"
1616
indexmap = "2.0.2"
17-
lazy_static = "1.4.0"
1817
pin-project-lite = "0.2.7"
1918
quickcheck = "1"
2019
rand = "0.8"

tower/Cargo.toml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -56,6 +56,7 @@ spawn-ready = ["futures-util", "tokio/sync", "tokio/rt", "util", "tracing"]
5656
steer = []
5757
timeout = ["pin-project-lite", "tokio/time"]
5858
util = ["futures-core", "futures-util", "pin-project-lite", "sync_wrapper"]
59+
tokio-stream = [] # TODO: Remove this feature at the next breaking release.
5960

6061
[dependencies]
6162
tower-layer = { version = "0.3.3", path = "../tower-layer" }
@@ -67,7 +68,6 @@ hdrhistogram = { workspace = true, optional = true }
6768
indexmap = { workspace = true, optional = true }
6869
slab = { workspace = true, optional = true }
6970
tokio = { workspace = true, features = ["sync"], optional = true }
70-
tokio-stream = { workspace = true, optional = true }
7171
tokio-util = { workspace = true, optional = true }
7272
tracing = { workspace = true, features = ["std"], optional = true }
7373
pin-project-lite = { workspace = true, optional = true }
@@ -84,7 +84,6 @@ tower-test = { version = "0.4", path = "../tower-test" }
8484
tracing = { workspace = true, features = ["std"] }
8585
tracing-subscriber = { workspace = true, features = ["fmt", "ansi"] }
8686
http = { workspace = true }
87-
lazy_static = { workspace = true }
8887
rand = { workspace = true, features = ["small_rng"] }
8988
quickcheck = { workspace = true }
9089

0 commit comments

Comments
 (0)