14 lines
470 B
TOML
14 lines
470 B
TOML
[package]
|
|
name = "backend"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
anyhow = "1.0.76"
|
|
axum = { version = "0.7.2", features = ["http2"] }
|
|
chrono = "0.4.31"
|
|
prisma-client-rust = { git = "https://github.com/Brendonovich/prisma-client-rust", tag = "0.6.10" }
|
|
serde = { version = "1.0.193", features = ["derive"] }
|
|
tokio = { version = "1.35.1", features = ["full"] }
|