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

39 lines
972 B
TOML
Raw Normal View History

2019-12-23 14:56:19 +03:00
[package]
name = "itconfig"
2021-06-22 10:22:29 +03:00
version = "1.1.1"
2019-12-23 14:56:19 +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"]
2020-01-16 22:05:35 +03:00
keywords = ["config", "env", "configuration", "environment", "macro"]
2019-12-23 14:56:19 +03:00
edition = "2018"
license = "MIT"
2022-07-22 14:10:44 +03:00
repository = "https://github.com/pleshevskiy/itconfig-rs"
homepage = "https://github.com/pleshevskiy/itconfig-rs"
2019-12-23 14:56:19 +03:00
documentation = "https://docs.rs/itconfig"
2021-02-24 00:27:40 +03:00
readme = "../README.md"
2019-12-23 14:56:19 +03:00
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
2020-01-16 22:05:35 +03:00
[features]
default = []
2020-02-08 15:09:58 +03:00
2020-03-12 23:20:34 +03:00
macro = ["itconfig-macro"]
2020-01-16 22:05:35 +03:00
number = []
2020-01-19 20:42:26 +03:00
bool = []
vec = []
2021-04-16 01:12:35 +03:00
2022-07-21 20:10:31 +03:00
[dependencies]
itconfig-macro = { version = "1.1", path = "../itconfig-macro", optional = true }
[dev-dependencies]
lazy_static = "1.4.0"
[badges]
2022-07-22 14:10:44 +03:00
maintenance = { status = "actively-developed" }
2020-03-17 14:59:33 +03:00
# https://docs.rs/about
[package.metadata.docs.rs]
all-features = true
2022-07-21 20:10:31 +03:00