-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathCargo.toml
30 lines (26 loc) · 873 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
[package]
name = "keymaker"
version = "0.2.0"
authors = ["MTRNord <[email protected]>"]
edition = "2018"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
actix-web = "3"
reqwest = { version = "0.10", features = ["json"] }
tokio = { version = "0.2", features = ["full"] }
askama_actix = "0.11"
askama = "0.10"
actix-files = "0.3.0"
actix-session = "0.4.0"
tracing-actix-web = "0.2"
sqlx = { version = "0.4", default-features = false, features = [ "runtime-tokio-native-tls", "macros", "chrono", "postgres", "tls", "offline" ] }
dotenv = "0.15.0"
color-eyre = "0.5"
listenfd = "0.3.3"
thiserror = "1.0"
serde = { version = "1.0", features = ["derive"] }
tracing = "0.1"
tracing-subscriber = "0.2"
tracing-futures = "0.2"
trust-dns-resolver = { version = "0.20", features = ["dns-over-rustls"] }
regex = "1"