30 lines
699 B
TOML
30 lines
699 B
TOML
[package]
|
|
name = "macroconf"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
description = "macro for creating configurations using miniconf"
|
|
license = "MIT OR Apache-2.0"
|
|
repository = "https://git.mkaenner.de/max/macroconf.git"
|
|
categories = ["config", "embedded", "data-structures"]
|
|
keywords = ["miniconf", "macro", "config"]
|
|
|
|
[lints.rust]
|
|
unsafe_code = "forbid"
|
|
|
|
[lints.clippy]
|
|
enum_glob_use = "deny"
|
|
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"
|