aboutsummaryrefslogtreecommitdiff
path: root/Cargo.toml
blob: 60a6d268f1de47506af701f3bc276f4fb3223e60 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
[package]
name = "toml"
version = "0.3.1"
authors = ["Alex Crichton <alex@alexcrichton.com>"]
license = "MIT/Apache-2.0"
readme = "README.md"
keywords = ["encoding"]
repository = "https://github.com/alexcrichton/toml-rs"
homepage = "https://github.com/alexcrichton/toml-rs"
documentation = "https://docs.rs/toml"
description = """
A native Rust encoder and decoder of TOML-formatted files and streams. Provides
implementations of the standard Serialize/Deserialize traits for TOML data to
facilitate deserializing and serializing Rust structures.
"""
categories = ["config", "encoding", "parser-implementations"]

[badges]
travis-ci = { repository = "alexcrichton/toml-rs" }

[dependencies]
serde = "0.9.6"

[dev-dependencies]
serde_derive = "0.9"
serde_json = "0.9"