1
0
mirror of https://github.com/actix/actix-extras.git synced 2025-02-02 10:59:03 +01:00

29 lines
638 B
TOML
Raw Permalink Normal View History

[package]
name = "actix-settings"
2022-07-31 20:13:27 +01:00
version = "0.6.0"
authors = [
"Joey Ezechiels <joey.ezechiels@gmail.com>",
"Rob Ede <robjtede@icloud.com>",
]
description = "Easily manage Actix Web's settings from a TOML file and environment variables"
2023-09-16 00:30:38 +01:00
license.workspace = true
edition.workspace = true
rust-version.workspace = true
[package.metadata.docs.rs]
rustdoc-args = ["--cfg", "docsrs"]
all-features = true
[dependencies]
actix-http = "3"
actix-service = "2"
actix-web = "4"
2023-09-16 01:19:16 +01:00
derive_more = "0.99.7"
once_cell = "1.13"
regex = "1.5.5"
serde = { version = "1", features = ["derive"] }
toml = "0.8"
[dev-dependencies]
2023-01-07 01:08:01 +00:00
env_logger = "0.10"