74 lines
1.2 KiB
TOML
74 lines
1.2 KiB
TOML
[package]
|
|
name = "itconfig"
|
|
version = "0.10.1"
|
|
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]
|
|
failure = { version = "0.1.6", features = ["derive"]}
|
|
|
|
[features]
|
|
default = ["macro", "numbers", "bool"]
|
|
macro = []
|
|
|
|
numbers = [
|
|
"int",
|
|
"uint",
|
|
"float"
|
|
]
|
|
|
|
int = [
|
|
"i8",
|
|
"i16",
|
|
"i32",
|
|
"i64",
|
|
"i128",
|
|
"isize",
|
|
]
|
|
|
|
uint = [
|
|
"u8",
|
|
"u16",
|
|
"u32",
|
|
"u64",
|
|
"u128",
|
|
"usize",
|
|
]
|
|
|
|
float = [
|
|
"f32",
|
|
"f64",
|
|
]
|
|
|
|
i8 = []
|
|
i16 = []
|
|
i32 = []
|
|
i64 = []
|
|
i128 = []
|
|
isize = []
|
|
|
|
u8 = []
|
|
u16 = []
|
|
u32 = []
|
|
u64 = []
|
|
u128 = []
|
|
usize = []
|
|
|
|
f32 = []
|
|
f64 = []
|
|
|
|
bool = []
|