aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDoug Goldstein <cardoe@cardoe.com>2018-06-29 10:42:01 -0500
committerDoug Goldstein <cardoe@cardoe.com>2018-06-29 10:42:01 -0500
commitc1e69a50a2f0ec20a52f4e9d4e71aacbd22a9774 (patch)
tree722817817e2d4f11ce2814c4140dc5d808ff5d76 /Cargo.lock
parentMerge pull request #13 from cardoe/travis-updates (diff)
downloadcargo-ebuild-c1e69a50a2f0ec20a52f4e9d4e71aacbd22a9774.tar.gz
cargo-ebuild-c1e69a50a2f0ec20a52f4e9d4e71aacbd22a9774.tar.bz2
cargo-ebuild-c1e69a50a2f0ec20a52f4e9d4e71aacbd22a9774.zip
separate functionality into a lib
To allow for testing the core functionality needs to be in a lib due to the way testing works with Rust and Cargo. The binary is now just the argument parser and then calling into the actual code in the lib.
Diffstat (limited to 'Cargo.lock')
-rw-r--r--Cargo.lock20
1 files changed, 10 insertions, 10 deletions
diff --git a/Cargo.lock b/Cargo.lock
index 26176cf..af0346c 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -1,13 +1,3 @@
-[root]
-name = "cargo-ebuild"
-version = "0.1.6-pre"
-dependencies = [
- "cargo 0.21.1 (registry+https://github.com/rust-lang/crates.io-index)",
- "serde 1.0.16 (registry+https://github.com/rust-lang/crates.io-index)",
- "serde_derive 1.0.16 (registry+https://github.com/rust-lang/crates.io-index)",
- "time 0.1.36 (registry+https://github.com/rust-lang/crates.io-index)",
-]
-
[[package]]
name = "advapi32-sys"
version = "0.2.0"
@@ -114,6 +104,16 @@ dependencies = [
]
[[package]]
+name = "cargo-ebuild"
+version = "0.1.6-pre"
+dependencies = [
+ "cargo 0.21.1 (registry+https://github.com/rust-lang/crates.io-index)",
+ "serde 1.0.16 (registry+https://github.com/rust-lang/crates.io-index)",
+ "serde_derive 1.0.16 (registry+https://github.com/rust-lang/crates.io-index)",
+ "time 0.1.36 (registry+https://github.com/rust-lang/crates.io-index)",
+]
+
+[[package]]
name = "cc"
version = "1.0.3"
source = "registry+https://github.com/rust-lang/crates.io-index"