Add dep: toml

This commit is contained in:
Matthias Beyer 2016-01-12 18:10:16 +01:00
parent ec6ac7794f
commit a6cc103584
2 changed files with 21 additions and 0 deletions

View file

@ -1,4 +1,20 @@
[root]
name = "libimagstore"
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)",
]

View file

@ -2,3 +2,8 @@
name = "libimagstore"
version = "0.1.0"
authors = ["Matthias Beyer <mail@beyermatthias.de>"]
[dependencies]
toml = "0.1.25"