2022-08-09 01:33:34 +02:00
|
|
|
[package]
|
2024-04-05 21:00:43 +02:00
|
|
|
name = "cibus-backend"
|
2022-08-09 01:33:34 +02:00
|
|
|
version = "0.1.0"
|
|
|
|
edition = "2021"
|
|
|
|
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
|
|
|
|
[dependencies]
|
2024-05-09 09:28:08 +02:00
|
|
|
async-graphql = "7.0.5"
|
2024-03-28 18:19:54 +01:00
|
|
|
axum = "0.7.5"
|
|
|
|
tokio = {version="1.37.0", features=["full"]}
|
|
|
|
uuid = {version="1.8.0", features=["v4", "fast-rng"]}
|
2024-08-30 10:55:16 +02:00
|
|
|
sqlx = { version = "0.8", features = [ "runtime-tokio-rustls", "postgres", "migrate"] }
|
2024-05-18 14:27:19 +02:00
|
|
|
anyhow = "1.0.86"
|
2022-08-09 01:33:34 +02:00
|
|
|
dotenv = "0.15.0"
|
2024-03-28 18:19:54 +01:00
|
|
|
tracing = "0.1.40"
|
|
|
|
tracing-subscriber = { version = "0.3.18", features = ["env-filter"] }
|
2024-09-20 02:13:54 +02:00
|
|
|
tower-http = { version = "0.6.0", features = ["full"] }
|