1
0
mirror of https://github.com/actix/actix-extras.git synced 2024-11-23 15:51:06 +01:00
actix-extras/actix-identity/Cargo.toml

42 lines
1.3 KiB
TOML
Raw Normal View History

2019-06-12 11:52:48 +02:00
[package]
name = "actix-identity"
version = "0.8.0"
authors = [
"Nikolay Kim <fafhrd91@gmail.com>",
"Luca Palmieri <rust@lpalmieri.com>",
]
2022-07-21 04:07:06 +02:00
description = "Identity management for Actix Web"
2020-09-11 22:22:55 +02:00
keywords = ["actix", "auth", "identity", "web", "security"]
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
2019-06-12 11:52:48 +02:00
[package.metadata.docs.rs]
rustdoc-args = ["--cfg", "docsrs"]
all-features = true
2019-06-12 11:52:48 +02:00
[dependencies]
2021-12-18 04:37:23 +01:00
actix-service = "2"
actix-session = "0.10"
actix-utils = "3"
2022-02-26 00:05:11 +01:00
actix-web = { version = "4", default-features = false, features = ["cookies", "secure-cookies"] }
2021-12-11 17:05:21 +01:00
derive_more = { version = "1", features = ["display", "error", "from"] }
2024-03-02 22:29:40 +01:00
futures-core = "0.3.17"
2022-02-03 23:33:47 +01:00
serde = { version = "1", features = ["derive"] }
tracing = { version = "0.1.30", default-features = false, features = ["log"] }
2019-06-12 11:52:48 +02:00
[dev-dependencies]
actix-http = "3"
2023-03-22 21:51:14 +01:00
actix-web = { version = "4", default-features = false, features = ["macros", "cookies", "secure-cookies"] }
actix-session = { version = "0.10", features = ["redis-session", "cookie-session"] }
env_logger = "0.11"
reqwest = { version = "0.12", default-features = false, features = ["cookies", "json"] }
uuid = { version = "1", features = ["v4"] }
2024-06-20 03:14:35 +02:00
[lints]
workspace = true