25 lines
562 B
TOML
25 lines
562 B
TOML
[package]
|
|
name = "blog"
|
|
version = "0.1.0"
|
|
edition = "2024"
|
|
|
|
[lib]
|
|
name = "blog"
|
|
path = "src/lib.rs"
|
|
|
|
[[bin]]
|
|
path = "src/main.rs"
|
|
name = "blog"
|
|
doc = false
|
|
|
|
[dependencies]
|
|
chrono = "0.4.41"
|
|
clap = { version = "4.5.39", features = ["derive", "string"] }
|
|
filetime = "0.2.25"
|
|
log = "0.4.27"
|
|
miette = { version = "7.6.0", features = ["fancy"] }
|
|
rusticnotion = { path = "vendor/rusticnotion" }
|
|
serde = { version = "1.0.219", features = ["derive", "rc"] }
|
|
serde_json = "1.0.140"
|
|
tokio = { version = "1.45.1", features = ["macros", "rt-multi-thread"] }
|
|
toml = "0.8.22"
|