[package]
edition = "2021"
rust-version = "1.71"
name = "dynamic-config-macros"
version = "0.3.0"
authors = ["Cevat Batuhan Tolon <tallon1997r@gmail.com>"]
build = false
exclude = [
"tests/**",
"benches/**",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Procedural macro implementation for the `dynamic-config` crate. Do not depend on this directly."
homepage = "https://github.com/ctolon/dynamic-config"
documentation = "https://docs.rs/dynamic-config-macros"
readme = "README.md"
keywords = [
"config",
"hot-reload",
"settings",
"watch",
"serde",
]
categories = [
"config",
"development-tools",
]
license = "MIT"
repository = "https://github.com/ctolon/dynamic-config"
[package.metadata.docs.rs]
all-features = true
rustdoc-args = [
"--cfg",
"docsrs",
]
[lib]
name = "dynamic_config_macros"
path = "src/lib.rs"
proc-macro = true
[dependencies.proc-macro2]
version = "1.0.91"
[dependencies.quote]
version = "1.0.35"
[dependencies.syn]
version = "3.0"
features = [
"full",
"parsing",
"printing",
"proc-macro",
]