This repository has been archived on 2022-07-24. You can view files and clone it, but cannot push or open issues or pull requests.
itconfig/itconfig-macro/Cargo.toml

31 lines
902 B
TOML
Raw Permalink Normal View History

2020-03-12 23:20:34 +03:00
[package]
name = "itconfig-macro"
2021-06-22 10:22:29 +03:00
version = "1.1.1"
2020-03-12 23:20:34 +03:00
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"
2021-04-22 23:54:17 +03:00
readme = "../README.md"
2020-03-12 23:20:34 +03:00
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[lib]
proc-macro = true
[dependencies]
syn = "1.0.60"
quote = "1.0.9"
proc-macro2 = "1.0.24"
2020-03-12 23:20:34 +03:00
[dev-dependencies]
itconfig = { path = "../itconfig" }
lazy_static = "1.4.0"
[badges]
travis-ci = { repository = "icetemple/itconfig-rs" }
2021-02-12 01:32:27 +03:00
maintenance = { status = "passively-maintained" }