2022-06-16 23:44:37 +02:00
|
|
|
[package]
|
|
|
|
name = "website"
|
|
|
|
version = "0.1.0"
|
|
|
|
edition = "2021"
|
|
|
|
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
|
|
|
|
[dependencies]
|
2023-03-22 22:39:18 +01:00
|
|
|
axum = { version = "0.6.12", features = ["http2"] }
|
|
|
|
cached = "0.42.0"
|
2023-03-25 16:14:53 +01:00
|
|
|
chrono = { version = "0.4.24", features = ["serde"] }
|
2022-06-16 23:44:37 +02:00
|
|
|
color-eyre = "0.6.1"
|
2022-08-31 23:20:59 +02:00
|
|
|
glob = "0.3.0"
|
2022-06-16 23:44:37 +02:00
|
|
|
hyper = { version = "0.14.19", features = ["full"] }
|
2023-03-25 12:23:11 +01:00
|
|
|
lazy_static = "1.4.0"
|
2023-06-18 09:51:36 +02:00
|
|
|
opentelemetry = { version = "0.19.0", features = ["metrics"] }
|
2023-03-25 22:12:49 +01:00
|
|
|
prometheus = { version = "0.13.3", features = ["process"] }
|
2022-08-31 23:20:59 +02:00
|
|
|
pulldown-cmark = "0.9.2"
|
2023-03-25 12:23:11 +01:00
|
|
|
regex = "1.7.2"
|
2022-08-31 23:20:59 +02:00
|
|
|
serde = "1.0.144"
|
|
|
|
serde_derive = "1.0.144"
|
|
|
|
serde_json = "1.0.85"
|
2023-06-18 11:34:08 +02:00
|
|
|
syntect = "5.0.0"
|
2023-03-25 21:38:16 +01:00
|
|
|
tera = { version = "1.17.0", features = ["builtins"] }
|
2022-06-16 23:44:37 +02:00
|
|
|
tokio = { version = "1.19.2", features = ["full"] }
|
2023-03-25 12:23:11 +01:00
|
|
|
toml = "0.7.3"
|
2022-06-16 23:44:37 +02:00
|
|
|
tower = { version = "0.4.12", features = ["full"] }
|
2023-03-22 22:39:18 +01:00
|
|
|
tower-http = { version = "0.4.0", features = ["full"] }
|
2022-06-16 23:44:37 +02:00
|
|
|
tracing = "0.1.35"
|
2023-04-02 15:26:20 +02:00
|
|
|
tracing-opentelemetry = "0.18.0"
|
|
|
|
tracing-subscriber = { version = "0.3.11", features = ["fmt", "env-filter", "json", "tracing-log"] }
|