2014-08-03 23:30:30 -05:00
|
|
|
[package]
|
2014-06-20 19:12:03 -05:00
|
|
|
name = "toml"
|
2019-05-16 15:10:01 -05:00
|
|
|
version = "0.5.1"
|
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"]
|
2019-05-08 14:12:14 -05:00
|
|
|
edition = "2018"
|
2017-02-08 23:27:28 -06:00
|
|
|
|
2019-01-07 11:06:04 -06:00
|
|
|
[workspace]
|
|
|
|
members = ['test-suite']
|
|
|
|
|
2017-02-08 23:27:28 -06:00
|
|
|
[badges]
|
|
|
|
travis-ci = { repository = "alexcrichton/toml-rs" }
|
2014-12-22 10:17:46 -06:00
|
|
|
|
2014-12-23 10:01:35 -06:00
|
|
|
[dependencies]
|
2019-07-27 19:41:01 -05:00
|
|
|
serde = "1.0.97"
|
2018-05-14 09:59:24 -05:00
|
|
|
linked-hash-map = { version = "0.5", optional = true }
|
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"
|
2018-05-14 09:59:24 -05:00
|
|
|
|
|
|
|
[features]
|
|
|
|
default = []
|
|
|
|
|
|
|
|
# Use LinkedHashMap rather than BTreeMap as the map type of toml::Value.
|
|
|
|
# This allows data to be read into a Value and written back to a TOML string
|
|
|
|
# while preserving the order of map keys in the input.
|
|
|
|
preserve_order = ["linked-hash-map"]
|