summaryrefslogtreecommitdiff
path: root/Cargo.toml
blob: deb573f6d0b81d1956fdcb513857631882bc4a71 (plain) (blame)
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 = "hdt-api"
version = "0.2.1"
edition = "2021"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
addr = "0.15.3"
anyhow = "1.0.57"
axum = "0.5.6"
bcrypt = "0.13.0"
chrono = { version = "0.4.19", features = ["serde"] }
dotenvy = "0.15.1"
hex = "0.4.3"
hmac = "0.12.1"
jwt = "0.16.0"
lazy_static = "1.4.0"
log = "0.4.17"
mime = "0.3.16"
rand = "0.8.5"
serde = { version = "1.0.137", features = ["derive"] }
serde_json = "1.0.81"
sha2 = "0.10.2"
sqlx = { version = "0.5.13", features = ["postgres", "runtime-tokio-native-tls", "chrono", "uuid"] }
tokio = { version = "1.18.2", features = ["full"] }
totp-rs = "2.0.0"
tower = "0.4.12"
tower-http = { version = "0.3.3", features = ["cors", "trace"] }
tracing-subscriber = "0.3.11"
trust-dns-proto = "0.21.2"
# uuid v1.0.0 is out, but it breaks sqlx... we just have to wait for sqlx to release v0.6
uuid = { version = "0.8.2", features = ["serde", "v4"] }
whois-rust = "1.5.0"
whoisthere = "0.1.3"

[features]