31 lines
908 B
TOML
31 lines
908 B
TOML
|
[package]
|
||
|
name = "itconfig-macro"
|
||
|
version = "1.0.0"
|
||
|
authors = ["Dmitriy Pleshevskiy <dmitriy@ideascup.me>"]
|
||
|
description = "Easy build a configs from environment variables and use it in globally."
|
||
|
categories = ["config", "web-programming"]
|
||
|
keywords = ["config", "env", "configuration", "environment", "macro"]
|
||
|
edition = "2018"
|
||
|
license = "MIT"
|
||
|
repository = "https://github.com/icetemple/itconfig-rs"
|
||
|
homepage = "https://github.com/icetemple/itconfig-rs"
|
||
|
documentation = "https://docs.rs/itconfig"
|
||
|
readme = "../itconfig/README.md"
|
||
|
|
||
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
||
|
[lib]
|
||
|
proc-macro = true
|
||
|
|
||
|
[dependencies]
|
||
|
syn = "1.0.16"
|
||
|
quote = "1.0.3"
|
||
|
proc-macro2 = "1.0.9"
|
||
|
|
||
|
[dev-dependencies]
|
||
|
itconfig = { path = "../itconfig" }
|
||
|
lazy_static = "1.4.0"
|
||
|
|
||
|
[badges]
|
||
|
travis-ci = { repository = "icetemple/itconfig-rs" }
|
||
|
maintenance = { status = "actively-developed" }
|