2020-07-16 19:32:30 +00:00
|
|
|
[package]
|
|
|
|
name = "xesite"
|
2022-03-22 00:14:14 +00:00
|
|
|
version = "2.4.0"
|
2022-01-10 23:09:31 +00:00
|
|
|
authors = ["Xe Iaso <me@christine.website>"]
|
2020-07-16 19:32:30 +00:00
|
|
|
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]
|
2022-04-02 16:24:39 +00:00
|
|
|
axum = "0.5"
|
|
|
|
axum-macros = "0.2"
|
2022-04-27 13:06:44 +00:00
|
|
|
axum-extra = "0.3"
|
2022-01-13 13:49:29 +00:00
|
|
|
color-eyre = "0.6"
|
2020-07-16 19:32:30 +00:00
|
|
|
chrono = "0.4"
|
2021-09-08 21:00:11 +00:00
|
|
|
comrak = "0.12.1"
|
2022-03-22 00:14:14 +00:00
|
|
|
derive_more = "0.99"
|
2020-07-16 19:32:30 +00:00
|
|
|
envy = "0.4"
|
2021-07-08 01:17:01 +00:00
|
|
|
estimated_read_time = "1"
|
2021-02-15 20:09:25 +00:00
|
|
|
futures = "0.3"
|
2020-07-16 19:32:30 +00:00
|
|
|
glob = "0.3"
|
2022-03-22 00:14:14 +00:00
|
|
|
http = "0.2"
|
|
|
|
http-body = "0.4"
|
2021-01-23 02:11:48 +00:00
|
|
|
hyper = "0.14"
|
2020-07-16 19:32:30 +00:00
|
|
|
kankyo = "0.3"
|
|
|
|
lazy_static = "1.4"
|
2020-07-27 03:12:01 +00:00
|
|
|
log = "0.4"
|
2022-05-07 14:32:04 +00:00
|
|
|
lol_html = "0.3"
|
2020-07-16 19:32:30 +00:00
|
|
|
mime = "0.3.0"
|
2021-11-03 13:44:16 +00:00
|
|
|
prometheus = { version = "0.13", default-features = false, features = ["process"] }
|
2020-07-16 19:32:30 +00:00
|
|
|
rand = "0"
|
2021-01-23 02:11:48 +00:00
|
|
|
reqwest = { version = "0.11", features = ["json"] }
|
2022-01-11 22:40:25 +00:00
|
|
|
serde_dhall = "0.11.0"
|
2020-07-16 19:32:30 +00:00
|
|
|
serde = { version = "1", features = ["derive"] }
|
|
|
|
serde_yaml = "0.8"
|
|
|
|
sitemap = "0.4"
|
|
|
|
thiserror = "1"
|
2021-01-23 02:11:48 +00:00
|
|
|
tokio = { version = "1", features = ["full"] }
|
2021-04-02 02:30:45 +00:00
|
|
|
tokio-stream = { version = "0.1", features = ["net"] }
|
2020-10-02 22:36:57 +00:00
|
|
|
tracing = "0.1"
|
|
|
|
tracing-futures = "0.2"
|
2021-11-03 13:44:37 +00:00
|
|
|
tracing-subscriber = { version = "0.3", features = ["fmt"] }
|
2020-07-16 19:32:30 +00:00
|
|
|
xml-rs = "0.8"
|
2020-09-19 15:33:46 +00:00
|
|
|
url = "2"
|
2021-01-15 03:36:34 +00:00
|
|
|
uuid = { version = "0.8", features = ["serde", "v4"] }
|
2020-07-16 19:32:30 +00:00
|
|
|
|
|
|
|
# workspace dependencies
|
2021-01-17 02:38:22 +00:00
|
|
|
cfcache = { path = "./lib/cfcache" }
|
2020-07-16 19:32:30 +00:00
|
|
|
jsonfeed = { path = "./lib/jsonfeed" }
|
2020-12-02 21:16:58 +00:00
|
|
|
mi = { path = "./lib/mi" }
|
2020-07-16 19:32:30 +00:00
|
|
|
patreon = { path = "./lib/patreon" }
|
|
|
|
|
2022-03-22 00:14:14 +00:00
|
|
|
[dependencies.tower]
|
|
|
|
version = "0.4"
|
|
|
|
features = [ "full" ]
|
|
|
|
|
|
|
|
[dependencies.tower-http]
|
2022-04-27 13:30:05 +00:00
|
|
|
version = "0.3"
|
2022-03-22 00:14:14 +00:00
|
|
|
features = [ "full" ]
|
|
|
|
|
2021-03-04 01:07:43 +00:00
|
|
|
# os-specific dependencies
|
2021-03-07 19:38:10 +00:00
|
|
|
[target.'cfg(target_os = "linux")'.dependencies]
|
2021-06-25 01:45:32 +00:00
|
|
|
sdnotify = { version = "0.2", default-features = false }
|
2021-03-04 01:07:43 +00:00
|
|
|
|
2020-07-16 19:32:30 +00:00
|
|
|
[build-dependencies]
|
2022-03-25 02:24:22 +00:00
|
|
|
ructe = { version = "0.14", features = [ "mime03" ] }
|
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"
|
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 = [
|
2020-12-02 21:16:58 +00:00
|
|
|
"./lib/*",
|
2020-07-16 19:32:30 +00:00
|
|
|
]
|