-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
52 lines (44 loc) · 1.46 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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
[package]
name = "ascii-pay-server"
version = "2.2.0"
authors = ["Lars Westermann <[email protected]>"]
edition = "2021"
[[bin]]
name = "ascii-pay-server"
path = "src/main.rs"
[dependencies]
tokio = { version = "1.32.0", features = ["full"] }
axum = { version="0.7.5", features=["multipart"] }
axum-extra = { version="0.9.3", features = ["typed-header"]}
tower-http = { version = "0.5.2", features = ["cors"] }
sqlx = { version = "0.7.1", features = ["runtime-tokio-rustls", "postgres", "json", "chrono"] }
serde = { version = "1.0.188", features = ["derive"] }
serde_json = { version="1.0.107" }
argon2rs = { version="0.2.5", default-features = false }
base64 = { version="0.22.0" }
aide = { version="0.13.4", features=["redoc", "axum", "axum-multipart"] }
schemars = { version = "0.8.15" }
headers = "0.4.0"
lazy_static = "1.4.0"
block-modes = "0.8"
aes = "0.7"
des = "0.7"
generic-array = "0.14.7"
hex-literal = "0.4.1"
rand = "0.8.5"
futures = "0.3.28"
dotenv = "0.15.0"
log = "0.4.20"
env_logger = "0.11.3"
chrono = { version="0.4.31", default-features = false, features=["clock"] }
wallet-pass = "0.4.0"
reqwest = { version="0.12.4", features=["native-tls", "native-tls-alpn"] }
openssl = "0.10.57"
lettre = { version = "0.11.2", optional = true, default-features = false, features= ["smtp-transport", "rustls-tls", "builder", "tokio1", "tokio1-rustls-tls"] }
[features]
mail = ["lettre"]
default = ["mail"]
[profile.release]
lto = true
strip = "debuginfo"
opt-level = "z"