43 lines
1 KiB
TOML
43 lines
1 KiB
TOML
[package]
|
|
name = "mdws"
|
|
version = "0.3.0"
|
|
edition = "2024"
|
|
authors = ["Penelope Gwen <support@pogmom.me>"]
|
|
license-file = "LICENSE.md"
|
|
description = "a markdown-based webserver built with rust and estrogen"
|
|
|
|
[[bin]]
|
|
name = "mdws"
|
|
path = "src/main.rs"
|
|
|
|
[dependencies]
|
|
markdown = "1.0.0"
|
|
tokio = { version = "1", features = ["full"] }
|
|
warp = { version = "0.4", features = ["server"] }
|
|
text-template = "0.1.0"
|
|
lipgloss = "0.1.1"
|
|
mq-view = "0.1.9"
|
|
mq-markdown = { version = "0.5.14", features = ["color"] }
|
|
toml = "1.0.1"
|
|
http = "1.4.0"
|
|
anyhow = "1.0.101"
|
|
toml-frontmatter = "0.1.0"
|
|
serde = { version = "1.0.228", features = ["derive"] }
|
|
rand = "0.10.0"
|
|
strip-ansi-escapes = "0.2.1"
|
|
ptree = "0.5.2"
|
|
dirs = "6.0.0"
|
|
serde_json = "1.0.149"
|
|
atom_syndication = "0.12.7"
|
|
walkdir = "2.5.0"
|
|
time = { version = "0.3.47", features = ["formatting"] }
|
|
|
|
[package.metadata.deb]
|
|
changelog = "debian/changelog"
|
|
maintainer-scripts = "debian/"
|
|
assets = [
|
|
["target/release/mdws", "usr/bin/", "755"],
|
|
["config.toml", "/etc/mdws/config.toml", "644" ]
|
|
]
|
|
systemd-units = { enable = true }
|
|
|