diff options
author | Doug Goldstein <cardoe@cardoe.com> | 2018-06-29 10:42:01 -0500 |
---|---|---|
committer | Doug Goldstein <cardoe@cardoe.com> | 2018-06-29 10:42:01 -0500 |
commit | c1e69a50a2f0ec20a52f4e9d4e71aacbd22a9774 (patch) | |
tree | 722817817e2d4f11ce2814c4140dc5d808ff5d76 /Cargo.lock | |
parent | Merge pull request #13 from cardoe/travis-updates (diff) | |
download | cargo-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.lock | 20 |
1 files changed, 10 insertions, 10 deletions
@@ -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" |