-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
executable file
·46 lines (39 loc) · 1.1 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
[package]
name = "klpbbs_survey_backend"
version = "1.5.0"
edition = "2021"
build = "build.rs"
[workspace]
members = [".", "migration"]
[dependencies]
#tracing
tracing = "0.1.40"
tracing-subscriber = { version = "0.3.18", features = ["env-filter", "chrono"] }
tracing-appender = "0.2.3"
#web
axum = { version = "0.7.5", features = ["multipart"] }
tower-http = { version = "0.6.1", features = ["catch-panic", "trace", "cors", "sensitive-headers"] }
axum-server = { version = "0.7.1", features = ["tls-rustls"] }
#serde
serde = { version = "1.0.213", features = ["derive"] }
serde_json = "1.0.132"
serde-inline-default = "0.2.2"
toml = "0.8.19"
#tools
lazy_static = "1.5.0"
tokio = "1.41.0"
diff = "0.1.13"
shadow-rs = "0.35.1"
#database
migration = { path = "migration" }
sea-orm = { version = "1.1.0", features = ["macros", "sqlx-postgres", "runtime-tokio-rustls"] }
futures = "0.3.30"
moka = { version = "0.12.8", features = ["future"] }
rand = "0.8.5"
chrono = "0.4.38"
reqwest = "0.12.8"
ammonia = "4.0.0"
uuid = { version = "1.11.0", features = ["v4"] }
log = "0.4.22"
[build-dependencies]
shadow-rs = "0.35.1"