Skip to content

Commit 2d16720

Browse files
authored
tower: update hdrhistogram to 7.0 and remove useless dependencies (#620)
Signed-off-by: koushiro <[email protected]>
1 parent 7674109 commit 2d16720

File tree

2 files changed

+4
-5
lines changed

2 files changed

+4
-5
lines changed

tower-test/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ futures-util = { version = "0.3", default-features = false }
2626
tokio = { version = "1.0", features = ["sync"] }
2727
tokio-test = "0.4"
2828
tower-layer = { version = "0.3", path = "../tower-layer" }
29-
tower-service = { version = "0.3" }
29+
tower-service = { version = "0.3", path = "../tower-service" }
3030
pin-project-lite = "0.2"
3131

3232
[dev-dependencies]

tower/Cargo.toml

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -65,10 +65,10 @@ util = ["futures-util"]
6565
futures-core = "0.3"
6666
pin-project = "1"
6767
tower-layer = { version = "0.3.1", path = "../tower-layer" }
68-
tower-service = { version = "0.3" }
68+
tower-service = { version = "0.3.1", path = "../tower-service" }
6969

7070
futures-util = { version = "0.3", default-features = false, features = ["alloc"], optional = true }
71-
hdrhistogram = { version = "6.0", optional = true }
71+
hdrhistogram = { version = "7.0", optional = true }
7272
indexmap = { version = "1.0.2", optional = true }
7373
rand = { version = "0.8", features = ["small_rng"], optional = true }
7474
slab = { version = "0.4", optional = true }
@@ -80,8 +80,7 @@ pin-project-lite = "0.2.7"
8080

8181
[dev-dependencies]
8282
futures = "0.3"
83-
hdrhistogram = "6.0"
84-
quickcheck = { version = "0.9", default-features = false }
83+
hdrhistogram = "7.0"
8584
tokio = { version = "1", features = ["macros", "sync", "test-util", "rt-multi-thread"] }
8685
tokio-stream = "0.1"
8786
tokio-test = "0.4"

0 commit comments

Comments
 (0)