diff options
| author | Niko Matsakis <niko@alum.mit.edu> | 2016-04-19 16:02:24 -0400 |
|---|---|---|
| committer | Niko Matsakis <niko@alum.mit.edu> | 2016-04-21 04:42:25 -0400 |
| commit | 906cc48d48d97776905b493a8897569a57b32d64 (patch) | |
| tree | 7086a8da1b988dfbb5403a7bf08b2299f9e1a1bf | |
| parent | 7aa594791d396836c1892cf5250ddc21fe5c7dad (diff) | |
| download | rust-906cc48d48d97776905b493a8897569a57b32d64.tar.gz rust-906cc48d48d97776905b493a8897569a57b32d64.zip | |
add serialize as a dep for compiletest
| -rw-r--r-- | src/tools/compiletest/Cargo.lock | 12 | ||||
| -rw-r--r-- | src/tools/compiletest/Cargo.toml | 1 |
2 files changed, 13 insertions, 0 deletions
diff --git a/src/tools/compiletest/Cargo.lock b/src/tools/compiletest/Cargo.lock index 3b79636a2db..24c8b20fdf8 100644 --- a/src/tools/compiletest/Cargo.lock +++ b/src/tools/compiletest/Cargo.lock @@ -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]] @@ -30,6 +31,10 @@ source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] name = "log" +version = "0.0.0" + +[[package]] +name = "log" version = "0.3.6" source = "registry+https://github.com/rust-lang/crates.io-index" @@ -64,6 +69,13 @@ 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" source = "registry+https://github.com/rust-lang/crates.io-index" diff --git a/src/tools/compiletest/Cargo.toml b/src/tools/compiletest/Cargo.toml index 359efe8af62..573ee388866 100644 --- a/src/tools/compiletest/Cargo.toml +++ b/src/tools/compiletest/Cargo.toml @@ -13,3 +13,4 @@ opt-level = 2 [dependencies] log = "0.3" env_logger = "0.3" +serialize = { path = "../../libserialize" } \ No newline at end of file |
