toml-rs/Cargo.toml

27 lines
766 B
TOML
Raw Normal View History

2014-08-03 23:30:30 -05:00
[package]
2014-06-20 19:12:03 -05:00
name = "toml"
2015-06-23 19:45:55 -05:00
version = "0.1.21"
2014-08-03 23:30:30 -05:00
authors = ["Alex Crichton <alex@alexcrichton.com>"]
2014-11-21 21:36:11 -06:00
license = "MIT/Apache-2.0"
2014-10-28 01:02:43 -05:00
readme = "README.md"
keywords = ["encoding"]
repository = "https://github.com/alexcrichton/toml-rs"
homepage = "https://github.com/alexcrichton/toml-rs"
documentation = "http://alexcrichton.com/toml-rs"
description = """
A native Rust encoder and decoder of TOML-formatted files and streams. Provides
implementations of the standard Encodable/Decodable traits for TOML data to
facilitate deserializing and serializing Rust structures.
"""
2014-12-22 10:17:46 -06:00
2014-12-23 10:01:35 -06:00
[dependencies]
rustc-serialize = { optional = true, version = "0.3.0" }
2015-06-11 03:34:08 -05:00
serde = { optional = true, version = "0.5" }
[features]
default = ["rustc-serialize"]
[dev-dependencies]
rustc-serialize = "0.3"