add serialize as a dep for compiletest

This commit is contained in:
Niko Matsakis 2016-04-19 16:02:24 -04:00
parent 7aa594791d
commit 906cc48d48
2 changed files with 13 additions and 0 deletions

View file

@ -4,6 +4,7 @@ version = "0.0.0"
dependencies = [
"env_logger 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)",
"log 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)",
"serialize 0.0.0",
]
[[package]]
@ -28,6 +29,10 @@ name = "libc"
version = "0.2.9"
source = "registry+https://github.com/rust-lang/crates.io-index"
[[package]]
name = "log"
version = "0.0.0"
[[package]]
name = "log"
version = "0.3.6"
@ -63,6 +68,13 @@ name = "regex-syntax"
version = "0.3.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
[[package]]
name = "serialize"
version = "0.0.0"
dependencies = [
"log 0.0.0",
]
[[package]]
name = "utf8-ranges"
version = "0.1.3"

View file

@ -13,3 +13,4 @@ opt-level = 2
[dependencies]
log = "0.3"
env_logger = "0.3"
serialize = { path = "../../libserialize" }