lockedenv 0.3.0

Type-safe, freeze-on-load environment variable management
Documentation
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

[package]
edition = "2021"
rust-version = "1.70"
name = "lockedenv"
version = "0.3.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Type-safe, freeze-on-load environment variable management"
readme = "README.md"
keywords = [
    "env",
    "config",
    "environment",
    "type-safe",
    "dotenv",
]
categories = ["config"]
license = "MIT OR Apache-2.0"
repository = "https://github.com/lupodevelop/lockedenv"

[features]
default = []
dotenv = ["dep:dotenvy"]
serde = [
    "dep:serde",
    "url?/serde",
]
tracing = ["dep:tracing"]
url-type = ["dep:url"]
watch = []

[lib]
name = "lockedenv"
path = "src/lib.rs"

[[example]]
name = "microservice"
path = "examples/microservice.rs"

[[example]]
name = "simple"
path = "examples/simple.rs"

[[test]]
name = "basic"
path = "tests/basic.rs"

[[test]]
name = "dotenv_feature"
path = "tests/dotenv_feature.rs"

[[test]]
name = "drift"
path = "tests/drift.rs"

[[test]]
name = "env_struct"
path = "tests/env_struct.rs"

[[test]]
name = "types"
path = "tests/types.rs"

[dependencies.dotenvy]
version = "0.15"
optional = true

[dependencies.serde]
version = "1.0"
features = ["derive"]
optional = true

[dependencies.tracing]
version = "0.1"
optional = true

[dependencies.url]
version = "2"
optional = true

[dependencies.zeroize]
version = "1"
features = ["derive"]

[dev-dependencies.serde_json]
version = "1.0"