1
0
Fork 0
mirror of https://github.com/actix/actix-web.git synced 2024-08-02 10:45:05 +00:00
actix-web/actix-identity/Cargo.toml

30 lines
765 B
TOML
Raw Normal View History

2019-06-12 09:52:48 +00:00
[package]
name = "actix-identity"
2019-12-13 06:36:15 +00:00
version = "0.2.0"
2019-06-12 09:52:48 +00:00
authors = ["Nikolay Kim <fafhrd91@gmail.com>"]
description = "Identity service for actix web framework."
readme = "README.md"
keywords = ["http", "web", "framework", "async", "futures"]
homepage = "https://actix.rs"
repository = "https://github.com/actix/actix-web.git"
documentation = "https://docs.rs/actix-identity/"
license = "MIT/Apache-2.0"
edition = "2018"
workspace = ".."
[lib]
name = "actix_identity"
path = "src/lib.rs"
[dependencies]
2019-12-13 06:36:15 +00:00
actix-web = { version = "2.0.0-alpha.5", default-features = false, features = ["secure-cookies"] }
2019-12-11 13:20:20 +00:00
actix-service = "1.0.0"
2019-11-20 17:33:22 +00:00
futures = "0.3.1"
2019-06-12 09:52:48 +00:00
serde = "1.0"
serde_json = "1.0"
time = "0.1.42"
[dev-dependencies]
2019-12-11 13:20:20 +00:00
actix-rt = "1.0.0"
2019-12-13 06:36:15 +00:00
actix-http = "1.0.0"
bytes = "0.5.3"