cibus-backend/cibus_bin/Cargo.toml

22 lines
749 B
TOML
Raw Normal View History

2022-08-09 01:33:34 +02:00
[package]
name = "cibus_bin"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
async-graphql = "4.0.6"
axum = "0.5.13"
tokio = {version="1.20.1", features=["full"]}
uuid = {version="1.1.2", features=["v4", "fast-rng"]}
sqlx = { version = "0.6", features = [ "runtime-tokio-rustls", "postgres", "migrate"] }
anyhow = "1.0.60"
dotenv = "0.15.0"
2022-08-15 22:55:04 +02:00
tracing = "0.1.36"
tracing-subscriber = { version = "0.3.15", features = ["env-filter"] }
askama = { version = "0.11.1", features = ["with-axum", "markdown", "serde-json"] }
tower-http = { version = "0.3.4", features = ["full"] }
askama_axum = "0.1.0"
axum-extra = { version = "0.3.7", features = ["spa"] }