2022-07-31 15:44:45 +02:00
|
|
|
[package]
|
|
|
|
name = "actix-settings"
|
2023-11-03 21:30:00 +01:00
|
|
|
version = "0.7.1"
|
2022-07-31 15:44:45 +02:00
|
|
|
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"
|
2024-06-20 03:18:37 +02:00
|
|
|
repository.workspace = true
|
|
|
|
homepage.workspace = true
|
2023-09-16 01:30:38 +02:00
|
|
|
license.workspace = true
|
|
|
|
edition.workspace = true
|
|
|
|
rust-version.workspace = true
|
2022-07-31 15:44:45 +02:00
|
|
|
|
2023-04-11 13:22:28 +02:00
|
|
|
[package.metadata.docs.rs]
|
|
|
|
rustdoc-args = ["--cfg", "docsrs"]
|
|
|
|
all-features = true
|
|
|
|
|
2022-07-31 15:44:45 +02:00
|
|
|
[dependencies]
|
|
|
|
actix-http = "3"
|
|
|
|
actix-service = "2"
|
2023-09-16 04:35:56 +02:00
|
|
|
actix-web = { version = "4", default-features = false }
|
2023-09-16 02:19:16 +02:00
|
|
|
derive_more = "0.99.7"
|
2022-07-31 15:44:45 +02:00
|
|
|
once_cell = "1.13"
|
2023-09-16 04:35:56 +02:00
|
|
|
regex = "1.5"
|
2022-07-31 15:44:45 +02:00
|
|
|
serde = { version = "1", features = ["derive"] }
|
2023-09-16 01:59:19 +02:00
|
|
|
toml = "0.8"
|
2022-07-31 15:44:45 +02:00
|
|
|
|
|
|
|
[dev-dependencies]
|
2023-09-16 04:44:47 +02:00
|
|
|
actix-web = "4"
|
2024-01-22 16:56:30 +01:00
|
|
|
env_logger = "0.11"
|
2024-06-20 03:14:35 +02:00
|
|
|
|
|
|
|
[lints]
|
|
|
|
workspace = true
|