Switch to Crates dependencies format

This commit is contained in:
Benjamin Sago 2015-01-12 01:20:28 +01:00
parent ee23d6b33a
commit 2784baea0a
2 changed files with 22 additions and 28 deletions

34
Cargo.lock generated
View File

@ -2,46 +2,46 @@
name = "exa"
version = "0.1.0"
dependencies = [
"ansi_term 0.4.1 (git+https://github.com/ogham/rust-ansi-term.git)",
"natord 1.0.4 (git+https://github.com/lifthrasiir/rust-natord.git)",
"number_prefix 0.2.0 (git+https://github.com/ogham/rust-number-prefix.git)",
"users 0.2.0 (git+https://github.com/ogham/rust-users.git)",
"ansi_term 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)",
"natord 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)",
"number_prefix 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)",
"users 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)",
]
[[package]]
name = "ansi_term"
version = "0.4.1"
source = "git+https://github.com/ogham/rust-ansi-term.git#6db0b81cf4517e482293351c133cf07cced8c703"
version = "0.4.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
"regex 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)",
"regex_macros 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)",
"regex 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)",
"regex_macros 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)",
]
[[package]]
name = "natord"
version = "1.0.4"
source = "git+https://github.com/lifthrasiir/rust-natord.git#6dc14929c67dcf898fe98c3aabdeec10274497f9"
version = "1.0.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
[[package]]
name = "number_prefix"
version = "0.2.0"
source = "git+https://github.com/ogham/rust-number-prefix.git#e4b56f7661c7d1b414b62af36a0e592f77911e4f"
version = "0.2.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
[[package]]
name = "regex"
version = "0.1.8"
version = "0.1.10"
source = "registry+https://github.com/rust-lang/crates.io-index"
[[package]]
name = "regex_macros"
version = "0.1.3"
version = "0.1.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
"regex 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)",
"regex 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)",
]
[[package]]
name = "users"
version = "0.2.0"
source = "git+https://github.com/ogham/rust-users.git#63d2760c52ee0a8c1e5592dea088dc90fc069f26"
version = "0.2.1"
source = "registry+https://github.com/rust-lang/crates.io-index"

View File

@ -6,14 +6,8 @@ authors = [ "ogham@bsago.me" ]
[[bin]]
name = "exa"
[dependencies.ansi_term]
git = "https://github.com/ogham/rust-ansi-term.git"
[dependencies.natord]
git = "https://github.com/lifthrasiir/rust-natord.git"
[dependencies.number_prefix]
git = "https://github.com/ogham/rust-number-prefix.git"
[dependencies.users]
git = "https://github.com/ogham/rust-users.git"
[dependencies]
ansi_term = "0.4.2"
natord = "1.0.6"
number_prefix = "0.2.1"
users = "0.2.1"