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

27 lines
720 B
TOML
Raw Normal View History

2019-06-12 11:52:48 +02:00
[package]
name = "actix-identity"
version = "0.4.0-beta.4"
2019-06-12 11:52:48 +02:00
authors = ["Nikolay Kim <fafhrd91@gmail.com>"]
2020-09-11 22:22:55 +02:00
description = "Identity service for Actix web"
keywords = ["actix", "auth", "identity", "web", "security"]
2019-06-12 11:52:48 +02:00
homepage = "https://actix.rs"
2021-06-27 08:02:38 +02:00
repository = "https://github.com/actix/actix-extras"
license = "MIT OR Apache-2.0"
2019-06-12 11:52:48 +02:00
edition = "2018"
[lib]
name = "actix_identity"
path = "src/lib.rs"
[dependencies]
2021-06-27 08:02:38 +02:00
actix-service = "2.0.0"
actix-web = { version = "4.0.0-beta.10", default-features = false, features = ["cookies", "secure-cookies"] }
futures-util = { version = "0.3.7", default-features = false }
2019-06-12 11:52:48 +02:00
serde = "1.0"
serde_json = "1.0"
2021-03-22 06:20:10 +01:00
time = "0.2.23"
2019-06-12 11:52:48 +02:00
[dev-dependencies]
actix-http = "3.0.0-beta.11"
2021-03-23 06:05:03 +01:00
actix-rt = "2"