site/Cargo.toml

46 lines
1023 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-14 19:16:52 +00:00
atom_syndication = { version = "0.9", features = ["with-serde"] }
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-14 13:10:12 +00:00
hyper = "0.13"
lazy_static = "1.4"
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-14 13:10:12 +00:00
prometheus = { version = "0.9", default-features = false, features = ["process"] }
2020-07-12 17:41:14 +00:00
rand = "0"
2020-07-14 19:16:52 +00:00
rss = "1"
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-14 19:16:52 +00:00
xml-rs = "0.8"
2020-07-12 22:19:18 +00:00
2020-07-14 17:27:52 +00:00
# workspace dependencies
2020-07-15 02:19:45 +00:00
go_vanity = { path = "./lib/go_vanity" }
2020-07-14 17:27:52 +00:00
jsonfeed = { path = "./lib/jsonfeed" }
2020-07-12 22:19:18 +00:00
[build-dependencies]
ructe = { version = "0.11", features = ["warp02"] }
2020-07-14 16:07:40 +00:00
[workspace]
members = [
2020-07-15 02:19:45 +00:00
"./lib/go_vanity",
2020-07-14 16:07:40 +00:00
"./lib/jsonfeed"
]