toml-rs/Cargo.toml

27 lines
765 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"
2018-04-04 09:56:29 -05:00
version = "0.4.6"
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"
2017-02-08 23:27:28 -06:00
documentation = "https://docs.rs/toml"
2014-10-28 01:02:43 -05:00
description = """
A native Rust encoder and decoder of TOML-formatted files and streams. Provides
2017-02-08 23:27:28 -06:00
implementations of the standard Serialize/Deserialize traits for TOML data to
2014-10-28 01:02:43 -05:00
facilitate deserializing and serializing Rust structures.
"""
2017-02-08 23:27:28 -06:00
categories = ["config", "encoding", "parser-implementations"]
[badges]
travis-ci = { repository = "alexcrichton/toml-rs" }
2014-12-22 10:17:46 -06:00
2014-12-23 10:01:35 -06:00
[dependencies]
2017-04-20 12:16:00 -05:00
serde = "1.0"
[dev-dependencies]
2017-04-20 12:16:00 -05:00
serde_derive = "1.0"
serde_json = "1.0"