1
Fork 0
mirror of https://github.com/Steffo99/micronfig.git synced 2024-10-16 14:37:29 +00:00
micronfig/Cargo.toml

32 lines
852 B
TOML
Raw Normal View History

2023-04-27 13:23:18 +00:00
[package]
name = "micronfig"
2023-05-05 01:13:35 +00:00
version = "0.2.0"
2023-04-28 16:52:22 +00:00
authors = ["Stefano Pigozzi <me@steffo.eu>"]
2023-04-27 13:23:18 +00:00
edition = "2021"
2023-04-29 00:03:01 +00:00
description = "Tiny crate for simple configuration management"
2023-04-28 16:52:22 +00:00
repository = "https://github.com/Steffo99/micronfig/"
license = "MIT OR Apache-2.0"
2023-04-28 16:55:55 +00:00
keywords = ["12-factor-app", "configuration", "config", "environment", "envvar"]
2023-04-28 16:52:22 +00:00
categories = ["config"]
2023-04-27 13:23:18 +00:00
2023-04-28 00:44:47 +00:00
2023-05-05 01:13:35 +00:00
[package.metadata.docs.rs]
all-features = true
cargo-args = ["--bins"]
rustdoc-args = ["--document-private-items"]
[features]
default = ["single_envvars", "single_envfiles", "multi", "handle", "macros"]
single_envvars = []
single_envfiles = []
multi = ["single_envvars", "single_envfiles"]
handle = ["multi"]
macros = ["lazy_static", "handle"]
testing = ["tempfile"]
[dependencies]
lazy_static = { version = "1.4.0", optional = true }
tempfile = { version = "3.5.0", optional = true }