forked from Rajdip019/flexauth
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
37 lines (34 loc) · 878 Bytes
/
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
[package]
name = "inhouse-auth"
version = "0.1.0"
edition = "2021"
default-run = "inhouse-auth"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[[bin]]
name="create_kek"
path="src/cli/main.rs"
[dependencies]
mongodb = "2.1"
bson = { version = "2", features = ["chrono-0_4"] } # Needed for using chrono datetime in doc
tokio = "1"
chrono = "0.4" # Used for setting DateTimes
serde = "1" # Used in the Map Data into Structs section
serde_json = "1.0.114"
serde_with = "3.6.1"
axum = "0.7.5"
tower-cookies = "0.10.0"
tower-http = { version = "0.5", features = ["fs"] }
axum-macros = "0.4.1"
strum_macros = "0.26.2"
futures = "0.3.30"
sha256 = "1.5.0"
argon2 = "0.5.3"
aes-gcm = "0.10.3"
hex = "0.4.3"
dotenv = "0.15.0"
lettre = "0.11"
jsonwebtoken = "9.3.0"
openssl = "0.10.64"
regex = "1.10.4"
uuid = "1.8.0"
woothee = "0.13.0"