-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
24 lines (23 loc) · 733 Bytes
/
Cargo.toml
File metadata and controls
24 lines (23 loc) · 733 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
[package]
name = "blog"
version = "2.0.0"
edition = "2024"
[dependencies]
anyhow = { version = "1.0.102" }
axum = { version = "0.8.8" }
chrono = { version = "0.4.44", features = ["serde"] }
comrak = { version = "0.51.0" }
rand = { version = "0.10.0" }
# rust-web-common = { path = "../rust-web-common" }
rust-web-common = { git = "https://github.com/corybuecker/rust-web-common", branch = "main" }
serde = { version = "1.0.228", features = ["derive"] }
tokio = { version = "1.49.0", default-features = false, features = [
"macros",
"rt-multi-thread",
"signal",
"fs",
"process",
] }
tower-http = { version = "0.6.8", features = ["trace", "fs"] }
tracing = { version = "0.1.44" }
xml-builder = { version = "0.6" }