]> git.proxmox.com Git - cargo.git/blob - vendor/toml-0.4.3/README.md
New upstream version 0.22.0
[cargo.git] / vendor / toml-0.4.3 / README.md
1 # toml-rs
2
3 [![Build Status](https://travis-ci.org/alexcrichton/toml-rs.svg?branch=master)](https://travis-ci.org/alexcrichton/toml-rs)
4 [![Coverage Status](https://coveralls.io/repos/alexcrichton/toml-rs/badge.svg?branch=master&service=github)](https://coveralls.io/github/alexcrichton/toml-rs?branch=master)
5 [![Latest Version](https://img.shields.io/crates/v/toml.svg)](https://crates.io/crates/toml)
6 [![Documentation](https://docs.rs/toml/badge.svg)](https://docs.rs/toml)
7
8 A [TOML][toml] decoder and encoder for Rust. This library is currently compliant
9 with the v0.4.0 version of TOML. This library will also likely continue to stay
10 up to date with the TOML specification as changes happen.
11
12 [toml]: https://github.com/toml-lang/toml
13
14 ```toml
15 # Cargo.toml
16 [dependencies]
17 toml = "0.4"
18 ```
19
20 This crate also supports serialization/deserialization through the
21 [serde](https://serde.rs) crate on crates.io. Currently the older `rustc-serialize`
22 crate is not supported in the 0.3+ series of the `toml` crate, but 0.2 can be
23 used for that support.
24
25 # License
26
27 `toml-rs` is primarily distributed under the terms of both the MIT license and
28 the Apache License (Version 2.0), with portions covered by various BSD-like
29 licenses.
30
31 See LICENSE-APACHE, and LICENSE-MIT for details.