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>
39 lines
1.2 KiB
TOML
39 lines
1.2 KiB
TOML
[package]
|
|
name = "actix-identity"
|
|
version = "0.7.0"
|
|
authors = [
|
|
"Nikolay Kim <fafhrd91@gmail.com>",
|
|
"Luca Palmieri <rust@lpalmieri.com>",
|
|
]
|
|
description = "Identity management for Actix Web"
|
|
keywords = ["actix", "auth", "identity", "web", "security"]
|
|
homepage = "https://actix.rs"
|
|
repository = "https://github.com/actix/actix-extras.git"
|
|
license.workspace = true
|
|
edition.workspace = true
|
|
rust-version.workspace = true
|
|
|
|
[package.metadata.docs.rs]
|
|
rustdoc-args = ["--cfg", "docsrs"]
|
|
all-features = true
|
|
|
|
[dependencies]
|
|
actix-service = "2"
|
|
actix-session = "0.9"
|
|
actix-utils = "3"
|
|
actix-web = { version = "4", default-features = false, features = ["cookies", "secure-cookies"] }
|
|
|
|
derive_more = "0.99.7"
|
|
futures-core = "0.3.7"
|
|
serde = { version = "1", features = ["derive"] }
|
|
tracing = { version = "0.1.30", default-features = false, features = ["log"] }
|
|
|
|
[dev-dependencies]
|
|
actix-http = "3"
|
|
actix-web = { version = "4", default-features = false, features = ["macros", "cookies", "secure-cookies"] }
|
|
actix-session = { version = "0.9", features = ["redis-rs-session", "cookie-session"] }
|
|
|
|
env_logger = "0.11"
|
|
reqwest = { version = "0.11", default-features = false, features = ["cookies", "json"] }
|
|
uuid = { version = "1", features = ["v4"] }
|