mraow/backend/Cargo.toml

22 lines
574 B
TOML
Raw Normal View History

2023-12-25 09:36:54 +00:00
[package]
name = "backend"
version = "0.1.0"
edition = "2021"
[dependencies]
2023-12-25 20:06:35 +00:00
common = { path = "../common" }
anyhow = { version = "1.0.76", features = ["backtrace"] }
axum = { version = "0.7.2", features = ["http2", "multipart", "macros", "ws"] }
dashmap = "5.5.3"
ed25519-compact = "2.0.6"
futures = "0.3.30"
k256 = "0.13.2"
lazy_static = "1.4.0"
2023-12-25 09:36:54 +00:00
prisma-client-rust = { git = "https://github.com/Brendonovich/prisma-client-rust", tag = "0.6.10" }
2023-12-25 20:06:35 +00:00
rand = "0.8.5"
ring = "0.17.7"
2023-12-25 09:36:54 +00:00
serde = "1.0.193"
2023-12-25 20:06:35 +00:00
serde_json = "1.0.108"
tokio = { version = "1.35.1", features = ["full"] }