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

29 lines
736 B
TOML
Raw Normal View History

2019-06-12 11:52:48 +02:00
[package]
name = "actix-identity"
version = "0.4.0-beta.8"
2019-06-12 11:52:48 +02:00
authors = ["Nikolay Kim <fafhrd91@gmail.com>"]
2021-12-18 04:37:23 +01:00
description = "Identity service for Actix Web"
2020-09-11 22:22:55 +02:00
keywords = ["actix", "auth", "identity", "web", "security"]
2019-06-12 11:52:48 +02:00
homepage = "https://actix.rs"
repository = "https://github.com/actix/actix-extras.git"
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-12-18 04:37:23 +01:00
actix-service = "2"
actix-utils = "3"
2022-01-21 21:42:58 +01:00
actix-web = { version = "4.0.0-beta.21", default-features = false, features = ["cookies", "secure-cookies"] }
2021-12-11 17:05:21 +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-12-29 11:22:56 +01:00
time = "0.3"
2019-06-12 11:52:48 +02:00
[dev-dependencies]
2021-12-11 17:05:21 +01:00
actix-http = "3.0.0-beta.15"
2021-03-23 06:05:03 +01:00
actix-rt = "2"