32 lines
784 B
TOML
32 lines
784 B
TOML
[package]
|
|
name = "mdpreview"
|
|
version = "0.4.4"
|
|
edition = "2024"
|
|
authors = ["Vladislav Kan <thek4n@yandex.ru>"]
|
|
|
|
[profile.release]
|
|
opt-level = "z"
|
|
lto = true
|
|
codegen-units = 1
|
|
panic = "abort"
|
|
strip = true
|
|
|
|
|
|
[dependencies]
|
|
pulldown-cmark = "0.9"
|
|
axum = "0.7"
|
|
tokio = { version = "1", features = ["full"] }
|
|
serde = { version = "1", features = ["derive"] }
|
|
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
|
|
syntect = "5.0"
|
|
notify = "6.1"
|
|
tokio-stream = { version = "0.1", features = ["sync"] }
|
|
futures = "0.3"
|
|
clap = { version = "4.5", features = ["derive"] }
|
|
tower-http = { version = "0.6.8", features = ["trace", "compression-gzip", "cors"] }
|
|
mime_guess = "2"
|
|
rand = "0.8"
|
|
askama = { version = "0.12", features = ["with-axum"] }
|
|
askama_axum = "0.4"
|
|
webbrowser = "1.0"
|