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]
|
|
|
|
tokio = { version = "1.33", features = ["full"] }
|
|
|
|
tokio-util = { version="0.7", features = ["io"]}
|
|
|
|
futures-util = "0.3"
|
|
|
|
axum = {version="0.6", features=["macros", "headers", "multipart"]}
|
|
|
|
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"
|
|
|
|
axum_oidc = {git="https://git2.zettoit.eu/pfz4/axum_oidc"}
|
|
|
|
log = "0.4"
|
|
|
|
env_logger = "0.10"
|
2023-11-06 21:53:45 +01:00
|
|
|
sailfish = "0.8.3"
|
|
|
|
tower-http = { version="0.4.4", features=["fs"], default-features=false }
|
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"
|