-
Notifications
You must be signed in to change notification settings - Fork 2
/
Cargo.toml
52 lines (47 loc) · 1.63 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 = "laskugeneraattori"
version = "0.1.0"
edition = "2021"
authors = ["Luukas Pörtfors <lajp@iki.fi>"]
[profile.release]
lto = true
[features]
default = ["email"]
system_fonts = ["dep:fontdb"]
email = ["dep:reqwest"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
axum = { version = "0.7.4", features = ["macros", "multipart"] }
axum-valid = { version = "0.14.0", features = [
"basic",
"full_garde",
"typed_multipart",
], default-features = false }
axum_typed_multipart = "0.11.0"
clap = { version = "4.5.16", features = ["env", "derive"] }
comemo = { version = "0.4.0" }
dotenv = "0.15.0"
fontdb = { version = "0.17.0", optional = true }
futures = "0.3.30"
garde = "0.17.0"
iban_validate = "4.0.1"
lopdf = { git = "https://github.com/J-F-Liu/lopdf.git", rev = "7f24a1c3ebc42470a37b4315b843331e4f81cdcd" }
regex = "1.10.6"
reqwest = { version = "0.12.5", default-features = false, features = ["multipart", "rustls-tls"], optional = true }
serde = "1.0.195"
serde_derive = "1.0.195"
serde_json = "1.0.111"
tempfile = "3.13.0"
thiserror = "1.0.56"
time = { version = "0.3.36" }
tokio = { version = "1.35.1", features = ["full"] }
tower-http = { version = "0.5.1", features = ["trace", "limit", "cors"] }
tower_governor = { version = "0.4.2", features = ["axum"] }
tracing = "0.1.40"
tracing-subscriber = { version = "0.3.18", features = ["env-filter"] }
typst = { version = "0.11.1" }
typst-assets = { version = "0.11.1", features = ["fonts"] }
typst-pdf = { version = "0.11.1" }
[dev-dependencies]
axum-test = "14.2.2"
tower = { version = "0.4.13", features = ["util"] }