1
Fork 0
mirror of https://github.com/Steffo99/micronfig.git synced 2024-12-23 12:34:18 +00:00
micronfig/micronfig_macros/Cargo.toml

28 lines
648 B
TOML
Raw Normal View History

[package]
name = "micronfig_macros"
2024-12-19 10:17:12 +00:00
version = "1.0.0"
authors = ["Stefano Pigozzi <me@steffo.eu>"]
edition = "2021"
description = "Macros for micronfig"
repository = "https://github.com/Steffo99/micronfig/"
license = "MIT OR Apache-2.0"
keywords = ["twelve-factor-app", "configuration", "config", "environment", "envvar"]
categories = ["config"]
[package.metadata.docs.rs]
all-features = true
[dependencies]
syn = { version = "2.0", features = ["extra-traits"] }
quote = "1.0"
[dev-dependencies]
2024-12-19 10:17:12 +00:00
micronfig = { version = "1.0.0", path = "../micronfig" }
trybuild = "1.0.87"
[lib]
proc-macro = true
2024-12-18 16:37:31 +00:00
[lints.clippy]
tabs-in-doc-comments = "allow"