You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
37 lines
755 B
TOML
37 lines
755 B
TOML
[package]
|
|
name = "blog"
|
|
version = "0.2.0"
|
|
edition = "2021"
|
|
|
|
[lib]
|
|
name = "blog"
|
|
path = "src/lib/lib.rs"
|
|
|
|
[[bin]]
|
|
name = "blog_server"
|
|
path = "src/bin/blog_server/main.rs"
|
|
|
|
[[bin]]
|
|
name = "css_gen"
|
|
path = "src/bin/css_gen/main.rs"
|
|
|
|
[dependencies]
|
|
libshire = { git = "https://github.com/pantonshire/libshire" }
|
|
tokio = { version = "1", features = ["full"] }
|
|
axum = "0.5"
|
|
tower = { version = "0.4", features = ["limit"] }
|
|
tower-http = { version = "0.3", features = ["fs", "trace"] }
|
|
mime = "0.3"
|
|
maud = "0.23"
|
|
atom_syndication = "0.11"
|
|
rss = "2"
|
|
kdl = "4"
|
|
knuffel = "2" # TODO: replace with kdl crate
|
|
pulldown-cmark = "0.9"
|
|
syntect = "4"
|
|
notify = "4"
|
|
chrono = "0.4"
|
|
tracing = "0.1"
|
|
tracing-subscriber = "0.3"
|
|
miette = { version = "4", features = ["fancy"] }
|