Files
booksman/backend/api/Cargo.toml
2023-05-28 15:17:13 +05:30

47 lines
1.0 KiB
TOML

[package]
name = "booksman-api"
version = "0.1.0"
edition = "2021"
[dependencies]
booksman-orm = { path = "../orm" }
booksman-search = { path = "../search" }
migration = { path = "../migration" }
entity = { path = "../entity" }
axum = "^0.6"
axum-extra = { version = "^0.3", features = ["spa"] }
clap = { version = "^3", features = ["derive"] }
dotenvy = "0.15.0"
image = "0.24"
error-chain = "0.12.4"
log = "^0.4"
meilisearch-sdk = "0.20.1"
reqwest = {version = "0.11.11", features = ["json"]}
serde = { version = "^1.0", features = ["derive"] }
serde_json = "^1.0"
tokio = { version = "^1", features = ["full"] }
tower = "^0.4"
tower-http = { version = "^0.3", features = ["full"] }
tracing = "^0.1"
tracing-subscriber = "^0.3"
itertools = "0.10"
chrono = "0.4"
axum-login = "0.4"
axum-macros = "0.3"
#features = ["sqlite"]
[dependencies.rand]
version = "0.8.5"
features = ["min_const_gen"]
[dependencies.sea-orm]
version = "^0.10.6" # sea-orm version
features = [
"debug-print",
"runtime-tokio-native-tls",
"sqlx-sqlite",
]