2019-06-12 11:52:48 +02:00
|
|
|
[package]
|
|
|
|
name = "actix-identity"
|
2021-11-23 00:20:33 +01:00
|
|
|
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"
|
2020-07-14 12:16:32 +02:00
|
|
|
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"
|
2021-10-21 15:10:00 +02:00
|
|
|
actix-web = { version = "4.0.0-beta.10", default-features = false, features = ["cookies", "secure-cookies"] }
|
2021-03-22 06:18:59 +01:00
|
|
|
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]
|
2021-10-21 15:10:00 +02:00
|
|
|
actix-http = "3.0.0-beta.11"
|
2021-03-23 06:05:03 +01:00
|
|
|
actix-rt = "2"
|