2023-10-20 00:04:42 +02:00
|
|
|
[package]
|
|
|
|
name = "bin"
|
|
|
|
version.workspace = true
|
|
|
|
edition = "2021"
|
|
|
|
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
|
|
|
|
[dependencies]
|
2023-12-19 10:56:47 +01:00
|
|
|
tokio = { version = "1.35", features = ["full"] }
|
2023-10-20 00:04:42 +02:00
|
|
|
tokio-util = { version="0.7", features = ["io"]}
|
|
|
|
futures-util = "0.3"
|
2023-12-19 10:56:47 +01:00
|
|
|
axum = {version="0.7", features=["macros", "multipart"]}
|
2023-10-20 00:04:42 +02:00
|
|
|
serde = "1.0"
|
|
|
|
toml = "0.8"
|
2023-10-22 18:44:45 +02:00
|
|
|
duration-str = "0.7.0"
|
2023-10-20 00:04:42 +02:00
|
|
|
render = { git="https://github.com/render-rs/render.rs" }
|
|
|
|
thiserror = "1.0"
|
|
|
|
rand = "0.8"
|
|
|
|
dotenvy = "0.15"
|
|
|
|
markdown = "0.3"
|
2023-12-19 10:56:47 +01:00
|
|
|
axum-oidc = "0.2.1"
|
|
|
|
tower-sessions = "0.7.0"
|
|
|
|
tower = "0.4.13"
|
2023-10-20 00:04:42 +02:00
|
|
|
log = "0.4"
|
|
|
|
env_logger = "0.10"
|
2023-11-06 21:53:45 +01:00
|
|
|
sailfish = "0.8.3"
|
2023-12-19 10:56:47 +01:00
|
|
|
tower-http = { version="0.5", features=["fs"], default-features=false }
|
2023-11-09 22:28:04 +01:00
|
|
|
prometheus-client = "0.22.0"
|
2023-10-20 00:04:42 +02:00
|
|
|
|
|
|
|
chacha20 = "0.9"
|
|
|
|
sha3 = "0.10"
|
|
|
|
hex = "0.4"
|
|
|
|
bytes = "1.5"
|
|
|
|
pin-project-lite = "0.2"
|
2023-12-19 10:56:47 +01:00
|
|
|
|
|
|
|
reqwest = { version="0.11", default_features=false, features=["rustls-tls", "json"] }
|
|
|
|
jsonwebtoken = "9.2.0"
|