cibus-backend/cibus_bin/Cargo.toml

19 lines
588 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]
2023-09-07 03:30:14 +02:00
async-graphql = "6.0.6"
axum = "0.6.20"
tokio = {version="1.32.0", features=["full"]}
uuid = {version="1.4.1", features=["v4", "fast-rng"]}
sqlx = { version = "0.7", features = [ "runtime-tokio-rustls", "postgres", "migrate"] }
anyhow = "1.0.75"
2022-08-09 01:33:34 +02:00
dotenv = "0.15.0"
2023-09-07 03:30:14 +02:00
tracing = "0.1.37"
tracing-subscriber = { version = "0.3.17", features = ["env-filter"] }
tower-http = { version = "0.4.4", features = ["full"] }