bin/Cargo.toml

25 lines
655 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"] }
tokio-util = { version="0.7", features=["io"]}
futures-util = "0.3"
axum = {version="0.6", features=["macros", "headers"]}
serde = "1.0"
serde_cbor = "0.11"
openidconnect = "3.0"
render = { git="https://github.com/render-rs/render.rs" }
thiserror = "1.0.40"
rand = "0.8.5"
dotenvy = "0.15"
reqwest = { version="0.11", default_features=false}
markdown = "0.3.0"
2023-04-20 13:36:38 +02:00
chrono = { version="0.4", features=["serde"]}
parse_duration = "2.1"