Add deps: xdg lib, itertools

This commit is contained in:
Matthias Beyer 2016-01-17 17:15:53 +01:00
parent e4658aa166
commit 79a2377452
3 changed files with 84 additions and 0 deletions

70
Cargo.lock generated
View File

@ -8,6 +8,35 @@ dependencies = [
"libimagutil 0.1.0", "libimagutil 0.1.0",
] ]
[[package]]
name = "ansi_term"
version = "0.7.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
[[package]]
name = "bitflags"
version = "0.3.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
[[package]]
name = "clap"
version = "1.5.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
"ansi_term 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)",
"bitflags 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)",
"strsim 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)",
"vec_map 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)",
]
[[package]]
name = "config"
version = "0.1.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
"nom 1.0.1 (registry+https://github.com/rust-lang/crates.io-index)",
]
[[package]] [[package]]
name = "fs2" name = "fs2"
version = "0.2.2" version = "0.2.2"
@ -18,6 +47,11 @@ dependencies = [
"winapi 0.2.5 (registry+https://github.com/rust-lang/crates.io-index)", "winapi 0.2.5 (registry+https://github.com/rust-lang/crates.io-index)",
] ]
[[package]]
name = "itertools"
version = "0.4.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
[[package]] [[package]]
name = "kernel32-sys" name = "kernel32-sys"
version = "0.2.1" version = "0.2.1"
@ -39,6 +73,14 @@ version = "0.1.0"
[[package]] [[package]]
name = "libimagrt" name = "libimagrt"
version = "0.1.0" version = "0.1.0"
dependencies = [
"clap 1.5.5 (registry+https://github.com/rust-lang/crates.io-index)",
"config 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)",
"itertools 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)",
"libimagstore 0.1.0",
"log 0.3.5 (registry+https://github.com/rust-lang/crates.io-index)",
"xdg-basedir 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)",
]
[[package]] [[package]]
name = "libimagstore" name = "libimagstore"
@ -52,11 +94,29 @@ dependencies = [
name = "libimagutil" name = "libimagutil"
version = "0.1.0" version = "0.1.0"
[[package]]
name = "log"
version = "0.3.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
"libc 0.2.4 (registry+https://github.com/rust-lang/crates.io-index)",
]
[[package]]
name = "nom"
version = "1.0.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
[[package]] [[package]]
name = "rustc-serialize" name = "rustc-serialize"
version = "0.3.16" version = "0.3.16"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
[[package]]
name = "strsim"
version = "0.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
[[package]] [[package]]
name = "toml" name = "toml"
version = "0.1.25" version = "0.1.25"
@ -65,6 +125,11 @@ dependencies = [
"rustc-serialize 0.3.16 (registry+https://github.com/rust-lang/crates.io-index)", "rustc-serialize 0.3.16 (registry+https://github.com/rust-lang/crates.io-index)",
] ]
[[package]]
name = "vec_map"
version = "0.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
[[package]] [[package]]
name = "winapi" name = "winapi"
version = "0.2.5" version = "0.2.5"
@ -75,3 +140,8 @@ name = "winapi-build"
version = "0.1.1" version = "0.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
[[package]]
name = "xdg-basedir"
version = "0.2.2"
source = "registry+https://github.com/rust-lang/crates.io-index"

12
libimagrt/Cargo.lock generated
View File

@ -4,9 +4,11 @@ version = "0.1.0"
dependencies = [ dependencies = [
"clap 1.5.5 (registry+https://github.com/rust-lang/crates.io-index)", "clap 1.5.5 (registry+https://github.com/rust-lang/crates.io-index)",
"config 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)", "config 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)",
"itertools 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)",
"libimagstore 0.1.0", "libimagstore 0.1.0",
"libimagutil 0.1.0", "libimagutil 0.1.0",
"log 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)",
"xdg-basedir 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)",
] ]
[[package]] [[package]]
@ -48,6 +50,11 @@ dependencies = [
"winapi 0.2.5 (registry+https://github.com/rust-lang/crates.io-index)", "winapi 0.2.5 (registry+https://github.com/rust-lang/crates.io-index)",
] ]
[[package]]
name = "itertools"
version = "0.4.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
[[package]] [[package]]
name = "kernel32-sys" name = "kernel32-sys"
version = "0.2.1" version = "0.2.1"
@ -120,3 +127,8 @@ name = "winapi-build"
version = "0.1.1" version = "0.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
[[package]]
name = "xdg-basedir"
version = "0.2.2"
source = "registry+https://github.com/rust-lang/crates.io-index"

View File

@ -7,6 +7,8 @@ authors = ["Matthias Beyer <mail@beyermatthias.de>"]
clap = "1.5.5" clap = "1.5.5"
config = "0.1.3" config = "0.1.3"
log = "0.3.4" log = "0.3.4"
xdg-basedir = "0.2.2"
itertools = "0.4.6"
[dependencies.libimagstore] [dependencies.libimagstore]
path = "../libimagstore" path = "../libimagstore"