2014-08-03 23:30:30 -05:00
|
|
|
[package]
|
2014-06-20 19:12:03 -05:00
|
|
|
name = "toml"
|
2018-10-01 12:05:56 -05:00
|
|
|
version = "0.4.8"
|
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"
|
2015-04-02 19:04:17 -05:00
|
|
|
|
|
|
|
[dev-dependencies]
|
2017-04-20 12:16:00 -05:00
|
|
|
serde_derive = "1.0"
|
|
|
|
serde_json = "1.0"
|