bin/Cargo.toml

29 lines
684 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]
2023-10-18 16:14:44 +02:00
tokio = { version = "1.33", features = ["full"] }
tokio-util = { version="0.7", features = ["io"]}
2023-04-20 00:11:39 +02:00
futures-util = "0.3"
2023-10-20 11:26:38 +02:00
axum = {version="0.6", features=["macros", "headers", "multipart"]}
2023-04-20 00:11:39 +02:00
serde = "1.0"
2023-10-18 16:14:44 +02:00
toml = "0.8"
2023-04-20 00:11:39 +02:00
render = { git="https://github.com/render-rs/render.rs" }
2023-10-18 16:14:44 +02:00
thiserror = "1.0"
rand = "0.8"
2023-04-20 00:11:39 +02:00
dotenvy = "0.15"
2023-10-18 16:14:44 +02:00
markdown = "0.3"
2023-06-10 17:46:42 +02:00
axum_oidc = {git="https://git2.zettoit.eu/pfz4/axum_oidc"}
2023-10-18 16:14:44 +02:00
log = "0.4"
env_logger = "0.10"
chacha20 = "0.9"
sha3 = "0.10"
hex = "0.4"
bytes = "1.5"
pin-project-lite = "0.2"