Move tests and support utilities to sub crates. (#268)

These crates will not be published to crates.io, but moving them allows
`tower-h2` to also depend on the test utilities.
This commit is contained in:
Carl Lerche
2018-05-03 13:08:39 -07:00
committed by GitHub
parent 51f6a12454
commit 8a9dfd14dc
29 changed files with 135 additions and 33 deletions

View File

@@ -28,6 +28,12 @@ branch = "master"
unstable = []
[workspace]
members = [
"tests/h2-tests",
"tests/h2-support",
"util/genfixture",
"util/genhuff",
]
[dependencies]
futures = "0.1"
@@ -42,7 +48,6 @@ string = "0.1"
indexmap = "1.0"
[dev-dependencies]
tokio-timer = "0.1"
# Fuzzing
quickcheck = { version = "0.4.1", default-features = false }