-
Notifications
You must be signed in to change notification settings - Fork 2
/
Cargo.toml
35 lines (32 loc) · 1.08 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
[package]
name = "quotefault-backend"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
actix-web = "4.4.0"
anyhow = "1.0.75"
async-trait = "0.1.74"
lazy_static = "1.4.0"
ldap3 = "0.11.3"
log = "0.4.20"
rand = "0.8.5"
regex = "1.10.2"
serde = { version = "1.0.189", features=["derive"] }
serde_json = "1.0.107"
trust-dns-resolver = "0.23.1"
deadpool = { version = "0.10.0", default-features = false, features = ["async-trait", "managed"] }
sqlx = { version = "0.7.2", features = ["postgres", "chrono", "runtime-tokio-native-tls", "macros"] }
utoipa = { version = "4.0.0", features = ["actix_extras", "chrono", "debug", "yaml"] }
chrono = { version = "0.4.31", features = ["serde"] }
dotenv = "0.15.0"
isahc = { version = "1.7.0", features = ["json"] }
base64 = "0.21.4"
openssl = "0.10.57"
futures = "0.3.28"
sha3 = "0.10.8"
env_logger = "0.10.0"
actix-cors = "0.7.0"
rusty-hook = "0.11.2"
[build-dependencies]
vergen = { version = "8", default-features = false, features = ["build", "git", "gitcl"] }