mirror of
https://github.com/actix/actix-extras.git
synced 2024-11-23 23:51:06 +01:00
254d4084a9
Updates the requirements on [env_logger](https://github.com/rust-cli/env_logger) to permit the latest version. - [Release notes](https://github.com/rust-cli/env_logger/releases) - [Changelog](https://github.com/rust-cli/env_logger/blob/main/CHANGELOG.md) - [Commits](https://github.com/rust-cli/env_logger/compare/v0.10.0...v0.11.0) --- updated-dependencies: - dependency-name: env_logger dependency-type: direct:production ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
30 lines
692 B
TOML
30 lines
692 B
TOML
[package]
|
|
name = "actix-settings"
|
|
version = "0.7.1"
|
|
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"
|
|
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 = { version = "4", default-features = false }
|
|
derive_more = "0.99.7"
|
|
once_cell = "1.13"
|
|
regex = "1.5"
|
|
serde = { version = "1", features = ["derive"] }
|
|
toml = "0.8"
|
|
|
|
[dev-dependencies]
|
|
actix-web = "4"
|
|
env_logger = "0.11"
|