19 lines
533 B
TOML
19 lines
533 B
TOML
[package]
|
|
name = "axum_server"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
axum = "0.7.3"
|
|
chrono = { version = "0.4.31", features = ["serde"] }
|
|
gray_matter = "0.2.6"
|
|
markdown = "1.0.0-alpha.16"
|
|
serde = "1.0.195"
|
|
serde_json = "1.0.111"
|
|
tokio = { version = "1.35.1", features = ["full"] }
|
|
tower-http = { version = "0.5.0", features = ["trace"] }
|
|
tracing = "0.1"
|
|
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
|