[package]
edition = "2024"
rust-version = "1.85"
name = "envbind"
version = "0.1.0"
authors = ["Pedro Guzmán"]
build = false
include = [
"CHANGELOG.md",
"CODE_OF_CONDUCT.md",
"CONTRIBUTING.md",
"Cargo.toml",
"SECURITY.md",
"docs/**",
"examples/**",
"LICENSE-MIT",
"Makefile",
"README.md",
"src/**",
"tests/**",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Typed environment binding primitives for Rust services."
documentation = "https://docs.rs/envbind"
readme = "README.md"
keywords = [
"configuration",
"environment",
"settings",
"config",
"rust",
]
categories = [
"config",
"development-tools",
]
license = "MIT"
repository = "https://github.com/OneTesseractInMultiverse/envbind"
[package.metadata.docs.rs]
all-features = true
targets = []
rustdoc-args = [
"--cfg",
"docsrs",
]
[lib]
name = "envbind"
path = "src/lib.rs"
[[example]]
name = "service_settings"
path = "examples/service_settings.rs"
[[test]]
name = "binder"
path = "tests/binder.rs"
[[test]]
name = "environment"
path = "tests/environment.rs"
[[test]]
name = "error"
path = "tests/error.rs"
[[test]]
name = "fields_bool"
path = "tests/fields_bool.rs"
[[test]]
name = "fields_string"
path = "tests/fields_string.rs"
[[test]]
name = "fields_u16"
path = "tests/fields_u16.rs"
[[test]]
name = "parameter_source"
path = "tests/parameter_source.rs"
[[test]]
name = "python_parity"
path = "tests/python_parity.rs"
[[test]]
name = "validators"
path = "tests/validators.rs"
[dependencies.base64]
version = "0.22"
[dependencies.regex]
version = "1"
[dependencies.serde_json]
version = "1"
[lints.clippy]
dbg_macro = "deny"
expect_used = "deny"
panic = "deny"
todo = "deny"
unwrap_used = "deny"
[lints.rust]
missing_docs = "deny"
unsafe_code = "forbid"
unused_lifetimes = "deny"
unused_qualifications = "warn"