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.
40 lines
967 B
TOML
40 lines
967 B
TOML
[package]
|
|
name = "arse"
|
|
version = "0.11.5"
|
|
authors = ["Anthony Martinez"]
|
|
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"]
|
|
categories = ["command-line-utilities", "web-programming::http-server"]
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
anyhow = "1.0"
|
|
chrono = "0.4"
|
|
clap = "2.33.3"
|
|
glob = "0.3.0"
|
|
hyper = "0.14"
|
|
log = "0.4"
|
|
pulldown-cmark = { version = "0.8", default-features = false, features = ["simd"] }
|
|
rand = "0.8"
|
|
routerify = "2"
|
|
rss = "1"
|
|
serde = { version = "1", features = ["derive"] }
|
|
simplelog = "0.10.0"
|
|
tera = "1"
|
|
tokio = { version = "1", features = ["full"] }
|
|
toml = "0.5"
|
|
|
|
[dev-dependencies]
|
|
tempfile = "3"
|
|
|
|
[profile.release]
|
|
panic = "abort"
|
|
lto = true
|
|
opt-level = 'z'
|