2020-07-16 19:32:30 +00:00
|
|
|
[package]
|
|
|
|
name = "xesite"
|
2020-10-25 20:29:02 +00:00
|
|
|
version = "2.1.0"
|
2020-07-16 19:32:30 +00:00
|
|
|
authors = ["Christine Dodrill <me@christine.website>"]
|
|
|
|
edition = "2018"
|
|
|
|
build = "src/build.rs"
|
2020-07-27 03:12:01 +00:00
|
|
|
repository = "https://github.com/Xe/site"
|
2020-07-16 19:32:30 +00:00
|
|
|
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
|
|
|
|
[dependencies]
|
2020-09-19 15:33:46 +00:00
|
|
|
color-eyre = "0.5"
|
2020-07-16 19:32:30 +00:00
|
|
|
chrono = "0.4"
|
2020-11-02 10:36:48 +00:00
|
|
|
comrak = "0.9"
|
2020-07-16 19:32:30 +00:00
|
|
|
envy = "0.4"
|
|
|
|
glob = "0.3"
|
|
|
|
hyper = "0.13"
|
|
|
|
kankyo = "0.3"
|
|
|
|
lazy_static = "1.4"
|
2020-07-27 03:12:01 +00:00
|
|
|
log = "0.4"
|
2020-07-16 19:32:30 +00:00
|
|
|
mime = "0.3.0"
|
2020-09-01 11:09:30 +00:00
|
|
|
prometheus = { version = "0.10", default-features = false, features = ["process"] }
|
2020-07-16 19:32:30 +00:00
|
|
|
rand = "0"
|
2020-10-29 10:28:11 +00:00
|
|
|
serde_dhall = "0.8.0"
|
2020-07-16 19:32:30 +00:00
|
|
|
serde = { version = "1", features = ["derive"] }
|
|
|
|
serde_yaml = "0.8"
|
|
|
|
sitemap = "0.4"
|
|
|
|
thiserror = "1"
|
|
|
|
tokio = { version = "0.2", features = ["macros"] }
|
2020-10-02 22:36:57 +00:00
|
|
|
tracing = "0.1"
|
|
|
|
tracing-futures = "0.2"
|
|
|
|
tracing-subscriber = { version = "0.2", features = ["fmt"] }
|
2020-07-16 19:32:30 +00:00
|
|
|
warp = "0.2"
|
|
|
|
xml-rs = "0.8"
|
2020-09-19 15:33:46 +00:00
|
|
|
url = "2"
|
2020-07-16 19:32:30 +00:00
|
|
|
|
|
|
|
# workspace dependencies
|
|
|
|
go_vanity = { path = "./lib/go_vanity" }
|
|
|
|
jsonfeed = { path = "./lib/jsonfeed" }
|
|
|
|
patreon = { path = "./lib/patreon" }
|
|
|
|
|
|
|
|
[build-dependencies]
|
2020-08-17 14:57:01 +00:00
|
|
|
ructe = { version = "0.12", features = ["warp02"] }
|
2020-07-16 19:32:30 +00:00
|
|
|
|
2020-09-27 16:35:24 +00:00
|
|
|
[dev-dependencies]
|
|
|
|
pfacts = "0"
|
|
|
|
serde_json = "1"
|
|
|
|
eyre = "0.6"
|
|
|
|
reqwest = { version = "0.10", features = ["json"] }
|
2020-10-02 22:36:57 +00:00
|
|
|
pretty_env_logger = "0"
|
2020-09-27 16:35:24 +00:00
|
|
|
|
2020-07-16 19:32:30 +00:00
|
|
|
[workspace]
|
|
|
|
members = [
|
|
|
|
"./lib/go_vanity",
|
|
|
|
"./lib/jsonfeed",
|
|
|
|
"./lib/patreon"
|
|
|
|
]
|