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

30 lines
742 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-12-29 09:04:28 +00:00
keywords = ["twelve-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", "--cfg", "docsrs"]
2023-05-05 01:13:35 +00:00
[features]
2023-12-30 02:31:15 +00:00
default = ["envvars", "envfiles", "envdot"]
envvars = []
envfiles = []
envdot = ["regex"]
2023-05-05 01:13:35 +00:00
testing = ["tempfile"]
[dependencies]
2023-12-30 02:31:15 +00:00
tempfile = { version = "3.9.0", optional = true }
regex = { version = "1.10.2", optional = true }