Krys4lide/crates/backend/Cargo.toml

30 lines
727 B
TOML
Raw Permalink Normal View History

2024-09-23 18:02:07 +02:00
[package]
name = "backend"
version = "0.1.0"
edition = "2021"
[dependencies]
2024-09-23 18:55:31 +02:00
anyhow = "1.0.89"
axum = { version = "0.7.6", features = ["macros"] }
listenfd = "1.0.1"
2024-09-23 18:02:07 +02:00
tokio = { version = "1.40.0", features = ["macros", "rt-multi-thread"] }
tower-http = { version = "0.6.1", features = ["cors"] }
sea-orm = { workspace = true, features = [
# Same `ASYNC_RUNTIME` and `DATABASE_DRIVER` as in the migration crate
"sqlx-sqlite",
"runtime-tokio-rustls",
"macros",
] }
serde.workspace = true
thiserror.workspace = true
entity = { path = "../../entity" }
migration = { path = "../../migration" }
utils = { path = "../utils" }
[dev-dependencies]
cargo-watch = "8.5.2"
sea-orm-cli.workspace = true
systemfd = "0.4.3"