macroconf/Cargo.toml

38 lines
894 B
TOML
Raw Normal View History

2024-04-15 20:21:09 +02:00
[package]
name = "macroconf"
2024-08-18 19:51:24 +02:00
version = "0.3.4"
2024-04-15 20:21:09 +02:00
edition = "2021"
description = "macro for creating configurations using miniconf"
license = "MIT OR Apache-2.0"
2024-04-17 16:59:06 +02:00
repository = "https://git.mkaenner.de/max/macroconf"
readme = "README.md"
2024-04-15 20:21:09 +02:00
categories = ["config", "embedded", "data-structures"]
keywords = ["miniconf", "macro", "config"]
2024-04-17 16:59:06 +02:00
authors = ["Max Känner <max.kaenner@gmail.com>"]
2024-04-15 20:21:09 +02:00
[lints.rust]
unsafe_code = "forbid"
[lints.clippy]
pedantic = "deny"
nursery = "deny"
cargo = "warn"
[lib]
proc-macro = true
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
syn = { version = "2.0", features = ["full", "extra-traits"] }
proc-macro2 = "1.0"
quote = "1.0"
convert_case = "0.6.0"
darling = "0.20"
2024-04-15 22:35:27 +02:00
[dev-dependencies]
2024-07-25 12:54:33 +02:00
miniconf = { version = "0.13", features = ["json-core"] }
2024-04-15 22:35:27 +02:00
serde = "1.0"
2024-08-16 20:59:05 +02:00
rstest = "0.22"
serde-json-core = "0.5.1"