mirror of
https://github.com/flibusta-apps/book_library_server.git
synced 2025-12-06 07:05:36 +01:00
Rewrite to rust init
This commit is contained in:
35
Cargo.toml
Normal file
35
Cargo.toml
Normal file
@@ -0,0 +1,35 @@
|
||||
[package]
|
||||
name = "book_library_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.8", features = ["postgresql"] }
|
||||
|
||||
tokio = { version = "1.28.2", features = ["full"] }
|
||||
|
||||
tracing = "0.1.37"
|
||||
tracing-subscriber = { version = "0.3.17", features = ["env-filter"]}
|
||||
tower-http = { version = "0.4.3", features = ["trace"] }
|
||||
|
||||
axum = { version = "0.6.18", features = ["json"] }
|
||||
axum-extra = { version ="0.7.7", features = ["query"] }
|
||||
axum-prometheus = "0.4.0"
|
||||
serde = { version = "1.0.163", features = ["derive"] }
|
||||
|
||||
sentry = { version = "0.31.3", features = ["debug-images"] }
|
||||
|
||||
meilisearch-sdk = "0.24.1"
|
||||
|
||||
rand = "0.8.5"
|
||||
|
||||
chrono = "0.4.26"
|
||||
Reference in New Issue
Block a user