Add dep: toml
This commit is contained in:
parent
ec6ac7794f
commit
a6cc103584
2 changed files with 21 additions and 0 deletions
16
libimagstore/Cargo.lock
generated
16
libimagstore/Cargo.lock
generated
|
@ -1,4 +1,20 @@
|
||||||
[root]
|
[root]
|
||||||
name = "libimagstore"
|
name = "libimagstore"
|
||||||
version = "0.1.0"
|
version = "0.1.0"
|
||||||
|
dependencies = [
|
||||||
|
"toml 0.1.25 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||||
|
]
|
||||||
|
|
||||||
|
[[package]]
|
||||||
|
name = "rustc-serialize"
|
||||||
|
version = "0.3.16"
|
||||||
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
|
|
||||||
|
[[package]]
|
||||||
|
name = "toml"
|
||||||
|
version = "0.1.25"
|
||||||
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
|
dependencies = [
|
||||||
|
"rustc-serialize 0.3.16 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||||
|
]
|
||||||
|
|
||||||
|
|
|
@ -2,3 +2,8 @@
|
||||||
name = "libimagstore"
|
name = "libimagstore"
|
||||||
version = "0.1.0"
|
version = "0.1.0"
|
||||||
authors = ["Matthias Beyer <mail@beyermatthias.de>"]
|
authors = ["Matthias Beyer <mail@beyermatthias.de>"]
|
||||||
|
|
||||||
|
[dependencies]
|
||||||
|
|
||||||
|
toml = "0.1.25"
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue