openstellaris/backend/Cargo.toml

27 lines
657 B
TOML
Raw Normal View History

2023-12-26 01:40:37 +00:00
[package]
name = "backend"
version = "0.1.0"
edition = "2021"
[dependencies]
2023-12-30 00:46:18 +00:00
triangle = { path = "../triangle" }
2023-12-26 01:40:37 +00:00
anyhow = "1.0.76"
axum = { version = "0.7.2", features = ["http2"] }
chrono = "0.4.31"
2023-12-30 00:46:18 +00:00
clap = { version = "4.4.11", features = ["derive"] }
2023-12-26 01:40:37 +00:00
serde = { version = "1.0.193", features = ["derive"] }
tokio = { version = "1.35.1", features = ["full"] }
2023-12-30 00:46:18 +00:00
serde_json = "1.0.108"
2023-12-30 09:07:31 +00:00
petgraph = "0.6.4"
2023-12-30 09:21:21 +00:00
names = "0.14.0"
rand = "0.8.5"
2023-12-31 01:40:47 +00:00
rspc = { version = "0.1.3", features = ["axum"] }
rand_chacha = "0.3.1"
colourado = "0.2.0"
[dependencies.prisma-client-rust]
git = "https://github.com/Brendonovich/prisma-client-rust"
tag = "0.6.10"
features = ["rspc"]