aboutsummaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authorAlex Crichton <alex@alexcrichton.com>2017-02-08 21:27:28 -0800
committerAlex Crichton <alex@alexcrichton.com>2017-02-08 21:27:28 -0800
commit6821911bc7cebac458d2cfb2c14b8d107aa60521 (patch)
tree88b04b9cf294c7b50ea860113a89f3f9bc7e1881 /README.md
parentbeff7f992d738db3565d899a72542baae57f835d (diff)
downloadmilf-rs-6821911bc7cebac458d2cfb2c14b8d107aa60521.tar.gz
milf-rs-6821911bc7cebac458d2cfb2c14b8d107aa60521.zip
Update metadata
Diffstat (limited to 'README.md')
-rw-r--r--README.md44
1 files changed, 9 insertions, 35 deletions
diff --git a/README.md b/README.md
index 8ae9bbd..ee2c56d 100644
--- a/README.md
+++ b/README.md
@@ -4,50 +4,24 @@
[![Coverage Status](https://coveralls.io/repos/alexcrichton/toml-rs/badge.svg?branch=master&service=github)](https://coveralls.io/github/alexcrichton/toml-rs?branch=master)
[![Latest Version](https://img.shields.io/crates/v/toml.svg)](https://crates.io/crates/toml)
-[Documentation](http://alexcrichton.com/toml-rs)
+[Documentation](https://docs.rs/toml)
-A [TOML][toml] decoder and encoder for Rust. This library is currently compliant with
-the v0.4.0 version of TOML. This library will also likely continue to stay up to
-date with the TOML specification as changes happen.
+A [TOML][toml] decoder and encoder for Rust. This library is currently compliant
+with the v0.4.0 version of TOML. This library will also likely continue to stay
+up to date with the TOML specification as changes happen.
[toml]: https://github.com/toml-lang/toml
```toml
# Cargo.toml
[dependencies]
-toml = "0.2"
+toml = "0.3"
```
-By default this crate supports [`rustc-serialize`] style serialization. This can
-be disabled though by disabling the default feature set:
-
-[`rustc-serialize`]: http://github.com/rust-lang/rustc-serialize
-
-```toml
-# Cargo.toml
-[dependencies]
-toml = { version = "0.2", default-features = false }
-```
-
-If you'd like to enable support for [serde] you can enable the `serde` feature:
-
-[serde]: https://github.com/serde-rs/serde
-
-```toml
-# Cargo.toml
-[dependencies]
-toml = { version = "0.2", features = ["serde"] }
-```
-
-If you'd like to *only* support serde, you can also write:
-
-[serde]: https://github.com/serde-rs/serde
-
-```toml
-# Cargo.toml
-[dependencies]
-toml = { version = "0.2", features = ["serde"], default-features = false }
-```
+This crate also supports serialization/deserialization through the
+[serde](serde.rs) crate on crates.io. Currently the older `rustc-serialize`
+crate is not supported in the 0.3+ series of the `toml` crate, but 0.2 can be
+used for that support.
# License