-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
47 lines (44 loc) · 1.3 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
[package]
name = "olivier"
version = "0.1.0"
edition = "2021"
rust-version = "1.56"
authors = ["oliver ding <[email protected]>"]
categories = ["command-line-utilities"]
readme = "README.md"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
anyhow = "1"
axum = { version = "0.7", features = ["http2", "macros"] }
axum-extra = "0.9"
chrono = "^0.4"
config = "0.14"
entity = { path = "entity" }
http = "1"
migration = { path = "migration" }
sea-orm = { version = "^0.12.0", features = [
"sqlx-postgres",
"runtime-tokio-rustls",
"macros",
] }
garde = { version = "0.18.0", features = ["full"] }
serde = { version = "1", features = ["derive"] }
thiserror = "1"
tokio = { version = "1", features = ["full"] }
tokio-graceful-shutdown = "0.15"
tower-http = { version = "^0.5", features = [
"trace",
"decompression-full",
"compression-full",
"propagate-header",
"sensitive-headers",
"cors",
] }
tracing = "0.1"
tracing-log = "0.2"
tracing-subscriber = { version = "0.3", features = ["json"] }
tracing-appender = "0.2"
utoipa = { version = "4", features = ["axum_extras", "uuid", "chrono"] }
utoipa-swagger-ui = { version = "6", features = ["axum"] }
[workspace]
members = [".", "entity", "migration"]