mirror of
https://github.com/kristoferssolo/filecaster.git
synced 2025-10-21 19:00:34 +00:00
41 lines
1.1 KiB
TOML
41 lines
1.1 KiB
TOML
[package]
|
|
name = "filecaster"
|
|
version = "0.1.0"
|
|
edition = "2024"
|
|
authors = ["Kristofers Solo <dev@kristofers.xyz>"]
|
|
description = "Procedural macro to derive configuration from files, with optional merging capabilities."
|
|
repository = "https://github.com/kristoferssolo/filecaster"
|
|
documentation = "https://docs.rs/filecaster"
|
|
homepage = "https://github.com/kristoferssolo/filecaster"
|
|
license = "MIT OR Apache-2.0"
|
|
keywords = ["proc-macro", "derive", "configuration", "file-parsing"]
|
|
categories = ["development-tools::procedural-macro", "parsing", "config"]
|
|
exclude = ["/.github", "/.gitignore", "/tests", "*.png", "*.md"]
|
|
readme = "README.md"
|
|
|
|
[features]
|
|
default = []
|
|
merge = ["dep:merge"]
|
|
|
|
[dependencies]
|
|
proc-macro2 = "1.0"
|
|
quote = "1.0"
|
|
proc-macro-error2 = "2.0"
|
|
syn = { version = "2.0", features = ["extra-traits", "parsing"] }
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
merge = { version = "0.2", optional = true }
|
|
|
|
[dev-dependencies]
|
|
claims = "0.8"
|
|
serde_json = "1.0"
|
|
tempfile = "3.20"
|
|
toml = "0.9"
|
|
|
|
[lib]
|
|
proc-macro = true
|
|
|
|
[lints.clippy]
|
|
pedantic = "warn"
|
|
nursery = "warn"
|
|
unwrap_used = "warn"
|