aboutsummaryrefslogtreecommitdiff
path: root/Cargo.toml
blob: 3c7a665be941e6cd086069c6b940709e2f6599b6 (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
27
28
29
30
31
32
33
34
35
[package]
name = "milf"
version = "0.5.8"
authors = ["boringcactus <melody@boringcactus.com>"]
license = "MIT/Apache-2.0"
readme = "README.md"
keywords = ["encoding"]
repository = "https://code.boringcactus.com/misc/milf-rs/"
documentation = "https://docs.rs/milf"
description = """
A native Rust encoder and decoder of My INI-Like Format (MILF)-formatted files and streams. Provides
implementations of the standard Serialize/Deserialize traits for MILF data to
facilitate deserializing and serializing Rust structures.
"""
categories = ["config", "encoding", "parser-implementations"]
edition = "2018"

[workspace]
members = ['test-suite']

[dependencies]
serde = "1.0.97"
indexmap = { version = "1.0", optional = true }

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

[features]
default = []

# Use indexmap rather than BTreeMap as the map type of milf::Value.
# This allows data to be read into a Value and written back to a MILF string
# while preserving the order of map keys in the input.
preserve_order = ["indexmap"]