[package]
edition = "2021"
rust-version = "1.85"
name = "serde-structprop"
version = "0.1.0"
authors = ["Anthony Oteri <anthony.oteri@gmail.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Serde serializer and deserializer for the structprop config file format"
homepage = "https://github.com/anthonyoteri/serde-structprop"
documentation = "https://docs.rs/serde-structprop"
readme = "README.md"
keywords = [
"serde",
"structprop",
"config",
"serialization",
]
categories = [
"encoding",
"config",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/anthonyoteri/serde-structprop"
[package.metadata.docs.rs]
all-features = true
rustdoc-args = [
"--cfg",
"docsrs",
]
[features]
derive = ["serde/derive"]
[lib]
name = "serde_structprop"
path = "src/lib.rs"
[[test]]
name = "integration"
path = "tests/integration.rs"
[[test]]
name = "prop"
path = "tests/prop.rs"
[dependencies.indexmap]
version = "2"
[dependencies.serde]
version = "1"
[dev-dependencies.proptest]
version = "1"
[dev-dependencies.serde]
version = "1"
features = ["derive"]