bin/Cargo.toml

24 lines
690 B
TOML
Raw Normal View History

2023-04-20 00:11:39 +02:00
[package]
name = "bin"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
tokio = { version = "1.27.0", features = ["full"] }
2023-06-05 22:53:55 +02:00
tokio-util = { version="0.7"}
2023-04-20 00:11:39 +02:00
futures-util = "0.3"
axum = {version="0.6", features=["macros", "headers"]}
serde = "1.0"
serde_cbor = "0.11"
render = { git="https://github.com/render-rs/render.rs" }
thiserror = "1.0.40"
rand = "0.8.5"
dotenvy = "0.15"
markdown = "0.3.0"
2023-06-10 17:46:42 +02:00
axum_oidc = {git="https://git2.zettoit.eu/pfz4/axum_oidc"}
2023-06-05 22:53:55 +02:00
rust-s3 = { version="0.33.0", features=["tokio-rustls-tls", "tags"], default_features=false }
log = "0.4.18"
pretty_env_logger = "0.5.0"