mirror of
https://github.com/flibusta-apps/services_manager_server.git
synced 2025-12-06 04:25:38 +01:00
28 lines
822 B
TOML
28 lines
822 B
TOML
[package]
|
|
name = "services_manager_server"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
[workspace]
|
|
members = [
|
|
"prisma-cli"
|
|
]
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
once_cell = "1.18.0"
|
|
|
|
prisma-client-rust = { git = "https://github.com/Brendonovich/prisma-client-rust", tag = "0.6.10", default-features = false, features = ["postgresql"] }
|
|
serde = { version = "1.0.193", features = ["derive"] }
|
|
|
|
tokio = { version = "1.34.0", features = ["full"] }
|
|
axum = { version = "0.6.20", features = ["json"] }
|
|
axum-prometheus = "0.4.0"
|
|
chrono = "0.4.31"
|
|
sentry = { version = "0.31.8", features = ["debug-images"] }
|
|
|
|
tracing = "0.1.40"
|
|
tracing-subscriber = { version = "0.3.18", features = ["env-filter"]}
|
|
tower-http = { version = "0.4.4", features = ["trace"] }
|