26 lines
779 B
TOML
26 lines
779 B
TOML
[package]
|
|
name = "itconfig"
|
|
version = "0.9.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 = "README.md"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[badges]
|
|
travis-ci = { repository = "icetemple/itconfig-rs" }
|
|
maintenance = { status = "actively-developed" }
|
|
|
|
[dependencies]
|
|
|
|
[features]
|
|
default = ['macro']
|
|
macro = []
|
|
|