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