Skip to content

Commit

Permalink
fix(dependencies): use correct minimum versions (#1974)
Browse files Browse the repository at this point in the history
`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.
  • Loading branch information
mathstuf authored and seanmonstar committed Oct 14, 2019
1 parent 4d188d1 commit 90c1e8f
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Cargo.toml
Expand Up @@ -19,13 +19,13 @@ include = [
]

[dependencies]
bytes = "0.4.4"
bytes = "0.4.6"
futures = "0.1.21"
futures-cpupool = { version = "0.1.6", optional = true }
http = "0.1.15"
http-body = "0.1"
httparse = "1.0"
h2 = "0.1.10"
h2 = "0.1.13"
iovec = "0.1"
itoa = "0.4.1"
log = "0.4"
Expand All @@ -37,7 +37,7 @@ tokio-executor = { version = "0.1.0", optional = true }
tokio-io = "0.1"
tokio-reactor = { version = "0.1", optional = true }
tokio-tcp = { version = "0.1", optional = true }
tokio-threadpool = { version = "0.1.3", optional = true }
tokio-threadpool = { version = "0.1.16", optional = true }
tokio-timer = { version = "0.2", optional = true }
want = "0.2"

Expand Down

0 comments on commit 90c1e8f

Please sign in to comment.