36 lines
1,021 B
TOML
36 lines
1,021 B
TOML
[package]
|
|
name = "website"
|
|
version = "0.1.0"
|
|
edition = "2024"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
anyhow = { version = "1.0.97", features = ["backtrace"] }
|
|
axum = { version = "0.8.3", features = ["http2", "original-uri", "tracing"] }
|
|
cached = "0.55.1"
|
|
config = "0.15.11"
|
|
notify = { version = "8.0.0", optional = true }
|
|
pulldown-cmark = "0.13.0"
|
|
regex = "1.11.1"
|
|
serde = "1.0.219"
|
|
serde_derive = "1.0.219"
|
|
serde_json = "1.0.140"
|
|
syntect = "5.2.0"
|
|
tera = { version = "1.20.0", features = ["builtins"] }
|
|
time = { version = "0.3.41", features = ["serde", "macros"] }
|
|
tokio = { version = "1.44.1", features = ["full", "tracing"] }
|
|
toml = "0.8.20"
|
|
tower = { version = "0.5.2", features = ["full"] }
|
|
tower-http = { version = "0.6.2", features = ["full"] }
|
|
tracing = "0.1.41"
|
|
tracing-subscriber = { version = "0.3.19", features = [
|
|
"fmt",
|
|
"env-filter",
|
|
"json",
|
|
"tracing-log",
|
|
] }
|
|
|
|
[features]
|
|
default = ["watch"]
|
|
watch = ["dep:notify"]
|