add serialize as a dep for compiletest
This commit is contained in:
parent
7aa594791d
commit
906cc48d48
2 changed files with 13 additions and 0 deletions
12
src/tools/compiletest/Cargo.lock
generated
12
src/tools/compiletest/Cargo.lock
generated
|
|
@ -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"
|
||||
|
|
|
|||
|
|
@ -13,3 +13,4 @@ opt-level = 2
|
|||
[dependencies]
|
||||
log = "0.3"
|
||||
env_logger = "0.3"
|
||||
serialize = { path = "../../libserialize" }
|
||||
Loading…
Add table
Add a link
Reference in a new issue