Skip to content

Commit 90c1e8f

Browse files
mathstufseanmonstar
authored andcommitted
fix(dependencies): use correct minimum versions (#1974)
`bytes` is bumped due to the addition of `Bytes::advance` in 0.4.6. `h2` 0.1.13 introduced the `.is_io()` and `into_io()` methods. Bumping `tokio-threadpool` to 0.1.16 removes a dependency on `rand` from the crate which reduces the size and avoids minimum version dependency issues in that dependency tree.
1 parent 4d188d1 commit 90c1e8f

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Cargo.toml

+3-3
Original file line numberDiff line numberDiff line change
@@ -19,13 +19,13 @@ include = [
1919
]
2020

2121
[dependencies]
22-
bytes = "0.4.4"
22+
bytes = "0.4.6"
2323
futures = "0.1.21"
2424
futures-cpupool = { version = "0.1.6", optional = true }
2525
http = "0.1.15"
2626
http-body = "0.1"
2727
httparse = "1.0"
28-
h2 = "0.1.10"
28+
h2 = "0.1.13"
2929
iovec = "0.1"
3030
itoa = "0.4.1"
3131
log = "0.4"
@@ -37,7 +37,7 @@ tokio-executor = { version = "0.1.0", optional = true }
3737
tokio-io = "0.1"
3838
tokio-reactor = { version = "0.1", optional = true }
3939
tokio-tcp = { version = "0.1", optional = true }
40-
tokio-threadpool = { version = "0.1.3", optional = true }
40+
tokio-threadpool = { version = "0.1.16", optional = true }
4141
tokio-timer = { version = "0.2", optional = true }
4242
want = "0.2"
4343

0 commit comments

Comments
 (0)