mirror of
https://github.com/actix/actix-extras.git
synced 2024-11-23 23:51:06 +01:00
37 lines
1.1 KiB
TOML
37 lines
1.1 KiB
TOML
[package]
|
|
name = "actix-identity"
|
|
version = "0.5.2"
|
|
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 = "MIT OR Apache-2.0"
|
|
edition = "2018"
|
|
|
|
[lib]
|
|
name = "actix_identity"
|
|
path = "src/lib.rs"
|
|
|
|
[dependencies]
|
|
actix-service = "2"
|
|
actix-session = "0.7"
|
|
actix-utils = "3"
|
|
actix-web = { version = "4", default-features = false, features = ["cookies", "secure-cookies"] }
|
|
|
|
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.7", features = ["redis-rs-session", "cookie-session"] }
|
|
|
|
env_logger = "0.10"
|
|
reqwest = { version = "0.11", default_features = false, features = ["cookies", "json"] }
|
|
uuid = { version = "1", features = ["v4"] }
|