]> git.proxmox.com Git - rustc.git/blob - src/vendor/toml-0.3.2/Cargo.toml
New upstream version 1.19.0+dfsg3
[rustc.git] / src / vendor / toml-0.3.2 / Cargo.toml
1 [package]
2 name = "toml"
3 version = "0.3.2"
4 authors = ["Alex Crichton <alex@alexcrichton.com>"]
5 license = "MIT/Apache-2.0"
6 readme = "README.md"
7 keywords = ["encoding"]
8 repository = "https://github.com/alexcrichton/toml-rs"
9 homepage = "https://github.com/alexcrichton/toml-rs"
10 documentation = "https://docs.rs/toml"
11 description = """
12 A native Rust encoder and decoder of TOML-formatted files and streams. Provides
13 implementations of the standard Serialize/Deserialize traits for TOML data to
14 facilitate deserializing and serializing Rust structures.
15 """
16 categories = ["config", "encoding", "parser-implementations"]
17
18 [badges]
19 travis-ci = { repository = "alexcrichton/toml-rs" }
20
21 [dependencies]
22 serde = "0.9.6"
23
24 [dev-dependencies]
25 serde_derive = "0.9"
26 serde_json = "0.9"