site/Cargo.toml

31 lines
642 B
TOML
Raw Normal View History

2020-07-12 16:54:33 +00:00
[package]
name = "xesite"
2020-07-12 18:42:09 +00:00
version = "2.0.0"
2020-07-12 16:54:33 +00:00
authors = ["Christine Dodrill <me@christine.website>"]
edition = "2018"
2020-07-12 22:19:18 +00:00
build = "src/build.rs"
2020-07-12 16:54:33 +00:00
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
2020-07-12 17:41:14 +00:00
anyhow = "1"
2020-07-13 01:50:45 +00:00
chrono = "0.4"
2020-07-12 23:26:53 +00:00
comrak = "0.8"
2020-07-12 18:42:09 +00:00
envy = "0.4"
2020-07-13 01:50:45 +00:00
glob = "0.3"
2020-07-12 17:41:14 +00:00
log = "0"
2020-07-12 22:39:50 +00:00
mime = "0.3.0"
2020-07-12 23:26:53 +00:00
pretty_env_logger = "0"
2020-07-12 17:41:14 +00:00
rand = "0"
2020-07-12 22:19:18 +00:00
ructe = "0.11"
2020-07-12 17:41:14 +00:00
serde_dhall = "0.5.3"
serde = { version = "1", features = ["derive"] }
2020-07-13 02:04:38 +00:00
serde_yaml = "0.8"
thiserror = "1"
2020-07-12 17:41:14 +00:00
tokio = { version = "0.2", features = ["macros"] }
warp = "0.2"
2020-07-12 22:19:18 +00:00
[build-dependencies]
ructe = { version = "0.11", features = ["warp02"] }