28 lines
691 B
TOML
28 lines
691 B
TOML
[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"
|
|
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"
|
|
|
|
chacha20 = "0.9"
|
|
sha3 = "0.10"
|
|
hex = "0.4"
|
|
bytes = "1.5"
|
|
pin-project-lite = "0.2"
|