-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
33 lines (31 loc) · 977 Bytes
/
Cargo.toml
File metadata and controls
33 lines (31 loc) · 977 Bytes
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
[package]
name = "ofapi"
version = "1.0.2"
edition = "2021"
license = "MIT"
default-run = "ofapi"
[dependencies]
axum = { version = "0.7.5", features = ["multipart", "query"] }
axum-server = { version = "0.7.1", features = ["tls-rustls-no-provider"], optional = true }
base64 = "0.22.1"
bcrypt = "0.15.1"
deadpool-postgres = "0.14.1"
dns-lookup = "2.0.4"
ffmonitor = { git = "https://github.com/OpenFusionProject/ffmonitor", tag = "v1.2.1" }
jsonwebtoken = "9.3.0"
lettre = "0.11.11"
log = "0.4.22"
regex = "1.11.1"
ring = "0.17.8"
rustls = { version = "0.23.12", features = ["ring"], default-features = false, optional = true }
serde = { version = "1.0.209", features = ["derive"] }
serde_json = "1.0.135"
serde_repr = "0.1.19"
simplelog = "0.12.2"
sqlite = "0.36.1"
tokio = { version = "1.40.0", features = ["full"] }
tokio-postgres = "0.7.15"
toml = "0.8.19"
tower-http = { version = "0.5.2", features = ["fs", "cors"] }
[features]
tls = ["dep:axum-server", "dep:rustls"]