-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
45 lines (37 loc) · 1.14 KB
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
[package]
name = "actix-loginmanager"
description = "a loginmanager for actix-web"
keywords = ["http", "web", "actix", "loginmanager"]
repository = "https://github.com/krealseu/actix-loginmanager"
readme = "README.md"
version = "0.0.4"
edition = "2018"
license = "MIT OR Apache-2.0"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[lib]
name = "actix_loginmanager"
path = "src/lib.rs"
[dependencies.actix-web]
version = "^4"
default_features = false
[dependencies]
futures = "^0.3.5"
futures-core = "^0.3.5"
futures-util="^0.3.5"
serde = {version="^1.0", features = ["derive"] }
serde_json = "^1.0"
rust-crypto = "^0.2"
urlencoding = "^2.1.2"
loginmanager-codegen = { version="^0.0.1", path = "loginmanager-codegen" }
[features]
cookie-session = ["actix-web/secure-cookies"]
default = ["cookie-session"]
[dependencies.time]
version = "^0.3"
features = ["std"]
default-features = false
[dev-dependencies]
dotenv = "^0.15"
actix-web = { version = "^4" }
tokio = { version = "^1", features = ["full"] }
sqlx = { version = "0.5.1", features = [ "sqlite","chrono","json","macros","offline",'runtime-async-std-rustls'] }