Files
booksman/backend/api/Cargo.toml
2022-11-01 10:58:37 +05:30

36 lines
789 B
TOML

[package]
name = "booksman-api"
version = "0.1.0"
edition = "2021"
[dependencies]
booksman-orm = { path = "../orm" }
entity = { path = "../entity" }
axum = "^0.5"
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"
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"
[dependencies.sea-orm]
version = "^0.9.2" # sea-orm version
features = [
"debug-print",
"runtime-tokio-native-tls",
"sqlx-sqlite",
]