toml-rs/Cargo.toml

20 lines
604 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-01-23 10:19:29 -06:00
version = "0.1.15"
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 = "0.2.0"