-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
23 lines (21 loc) · 728 Bytes
/
Cargo.toml
File metadata and controls
23 lines (21 loc) · 728 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
[package]
name = "auth_for_warp"
version = "0.1.1"
edition = "2021"
license = "Apache-2.0"
description = "plugin auth module for warp-based servers"
repository = "https://github.com/swiftcoder/auth_for_warp/"
[dependencies]
async-trait = "0.1"
thiserror = "1.0"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
tokio = { version = "1.18", features = ["macros", "rt-multi-thread", "sync"] }
warp = { version = "0.3", features = ["tls"] }
uuid = { version = "1.0", features = ["v4"] }
rust-argon2 = "1.0"
jsonwebtoken = { version = "8.1", default-features = false }
[dev-dependencies]
anyhow = "1.0"
reqwest = { version = "0.11", features = ["json"] }
tokio-stream = { version = "0.1", features = ["net"] }