arse/Cargo.toml

40 lines
967 B
TOML
Raw Normal View History

2021-03-21 16:25:31 +00:00
[package]
name = "arse"
2021-09-28 12:15:11 +00:00
version = "0.11.5"
authors = ["Anthony Martinez"]
2021-03-21 16:25:31 +00:00
edition = "2018"
license = "MIT OR Apache-2.0"
readme = "README.md"
homepage = "https://git.staart.one/ajmartinez/arse"
repository = "https://git.staart.one/ajmartinez/arse.git"
description = "A Rust Site Engine"
keywords = ["blog", "CLI", "website-engine"]
2021-04-10 09:49:14 +00:00
categories = ["command-line-utilities", "web-programming::http-server"]
2021-03-21 16:25:31 +00:00
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
2021-06-03 16:21:14 +00:00
anyhow = "1.0"
chrono = "0.4"
2021-03-21 16:25:31 +00:00
clap = "2.33.3"
glob = "0.3.0"
hyper = "0.14"
log = "0.4"
2021-03-21 16:25:31 +00:00
pulldown-cmark = { version = "0.8", default-features = false, features = ["simd"] }
rand = "0.8"
2021-06-03 16:21:14 +00:00
routerify = "2"
2021-07-06 18:54:14 +00:00
rss = "1"
serde = { version = "1", features = ["derive"] }
simplelog = "0.10.0"
2021-06-03 16:21:14 +00:00
tera = "1"
2021-03-21 16:25:31 +00:00
tokio = { version = "1", features = ["full"] }
toml = "0.5"
2021-03-21 16:25:31 +00:00
[dev-dependencies]
tempfile = "3"
2021-03-21 16:25:31 +00:00
[profile.release]
panic = "abort"
lto = true
opt-level = 'z'