This repository has been archived by the owner on Apr 16, 2020. It is now read-only.
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Before this change, the tests would fail to compile due to a dependency conflict between the version `tokio-timer` required by `tokio` 0.1.6, which the test crate depends on, and the version of `tokio-timer` which the `tower-balance` crate depends on: ``` ➜ cargo test -p test Updating registry `https://github.com/rust-lang/crates.io-index` Updating git repository `https://github.com/tower-rs/tower` Updating git repository `https://github.com/carllerche/h2` error: failed to select a version for `tokio-timer`. ... required by package `tokio v0.1.6` ... which is depended on by `tests v0.1.0 (file:///Users/eliza/Code/tower-h2/tests)` versions that meet the requirements `= 0.2.3` are: 0.2.3 all possible versions conflict with previously selected packages. previously selected package `tokio-timer v0.2.4` ... which is depended on by `tower-balance v0.1.0 (https://github.com/tower-rs/tower#20fb04e3)` ... which is depended on by `tower-h2-balance v0.1.0 (file:///Users/eliza/Code/tower-h2/tower-balance)` failed to select a version for `tokio-timer` which could resolve this conflict ``` After updating the `tokio` version, the tests compile successfully. Signed-off-by: Eliza Weisman <[email protected]>
- Loading branch information