1# toml-rs
2
3[![Latest Version](https://img.shields.io/crates/v/toml.svg)](https://crates.io/crates/toml)
4[![Documentation](https://docs.rs/toml/badge.svg)](https://docs.rs/toml)
5
6A [TOML][toml] decoder and encoder for Rust. This library is currently compliant
7with the v0.5.0 version of TOML. This library will also likely continue to stay
8up to date with the TOML specification as changes happen.
9
10[toml]: https://github.com/toml-lang/toml
11
12```toml
13# Cargo.toml
14[dependencies]
15toml = "0.5"
16```
17
18This crate also supports serialization/deserialization through the
19[serde](https://serde.rs) crate on crates.io. Currently the older `rustc-serialize`
20crate is not supported in the 0.3+ series of the `toml` crate, but 0.2 can be
21used for that support.
22
23# License
24
25This project is licensed under either of
26
27 * Apache License, Version 2.0, ([LICENSE-APACHE](LICENSE-APACHE) or
28   http://www.apache.org/licenses/LICENSE-2.0)
29 * MIT license ([LICENSE-MIT](LICENSE-MIT) or
30   http://opensource.org/licenses/MIT)
31
32at your option.
33
34### Contribution
35
36Unless you explicitly state otherwise, any contribution intentionally submitted
37for inclusion in toml-rs by you, as defined in the Apache-2.0 license, shall be
38dual licensed as above, without any additional terms or conditions.
39