mirror of
https://github.com/Steffo99/micronfig.git
synced 2025-04-25 00:30:30 +00:00
29 lines
740 B
TOML
29 lines
740 B
TOML
[package]
|
|
name = "micronfig"
|
|
version = "1.0.0"
|
|
authors = ["Stefano Pigozzi <me@steffo.eu>"]
|
|
edition = "2021"
|
|
description = "Macro-based configuration management"
|
|
repository = "https://github.com/Steffo99/micronfig/"
|
|
license = "MIT OR Apache-2.0"
|
|
keywords = ["twelve-factor-app", "configuration", "config", "environment", "envvar"]
|
|
categories = ["config"]
|
|
|
|
[package.metadata.docs.rs]
|
|
all-features = true
|
|
|
|
[features]
|
|
default = ["envvars", "envfiles", "envdot"]
|
|
envvars = []
|
|
envfiles = []
|
|
envdot = ["regex"]
|
|
|
|
[dependencies]
|
|
micronfig_macros = { version = "1.0.0", path = "../micronfig_macros" }
|
|
regex = { version = "1.10.2", optional = true }
|
|
|
|
[dev-dependencies]
|
|
tempfile = { version = "3.9.0" }
|
|
|
|
[lints.clippy]
|
|
tabs-in-doc-comments = "allow"
|