-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
31 lines (28 loc) · 825 Bytes
/
Cargo.toml
File metadata and controls
31 lines (28 loc) · 825 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
[package]
name = "rust_rest_api"
version = "0.4.2"
edition = "2024"
license = "MIT"
authors = ["Habibi-Dev"]
[profile.release]
opt-level = 3
lto = true
strip = true
[dependencies]
axum = "0.8.4"
tokio = { version = "1.47.1", features = ["full"] }
serde_json = { version = "1.0.145", features = ["preserve_order"] }
dotenvy = "0.15.7"
serde = { version = "1.0.228", features = ["derive"] }
chrono = "0.4.42"
chrono-tz = "0.10.4"
sea-orm = { version = "1.1.16", features = ["sqlx-sqlite", "runtime-tokio-rustls"] }
once_cell = "1.21.3"
rust-embed = "8.7.2"
askama = { version = "0.14", features = ["full"] }
mime_guess = "2.0.5"
reqwest = { version = "0.12.23", features = ["__rustls", "json", "rustls-tls"] }
uuid = { version = "1.18.1", features = ["v4"] }
anyhow = "1.0.100"
[dependencies.migration]
path = "./migration"