2014-08-03 23:30:30 -05:00
|
|
|
[package]
|
2014-06-20 19:12:03 -05:00
|
|
|
|
|
|
|
name = "toml"
|
2016-02-01 18:50:05 -06:00
|
|
|
version = "0.1.27"
|
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]
|
2015-04-02 19:04:17 -05:00
|
|
|
rustc-serialize = { optional = true, version = "0.3.0" }
|
2015-11-29 16:52:35 -06:00
|
|
|
serde = { optional = true, version = "0.6" }
|
2015-04-02 19:04:17 -05:00
|
|
|
|
|
|
|
[features]
|
|
|
|
default = ["rustc-serialize"]
|
|
|
|
|
|
|
|
[dev-dependencies]
|
|
|
|
rustc-serialize = "0.3"
|