This commit is contained in:
Sebastian Hugentobler 2025-07-02 21:09:37 +02:00
parent 1c95f4391f
commit b4a0aadef9
Signed by: shu
SSH key fingerprint: SHA256:ppcx6MlixdNZd5EUM1nkHOKoyQYoJwzuQKXM6J/t66M
73 changed files with 2993 additions and 1632 deletions

View file

@ -8,23 +8,28 @@ repository = { workspace = true }
description = "A very simple ebook server for a calibre library, providing a html interface as well as an OPDS feed."
[dependencies]
axum = { version = "0.8.4", features = ["http2", "tracing"] }
calibre-db = { path = "../calibre-db/", version = "0.1.0" }
clap = { version = "4.5.40", features = ["derive", "env"] }
image = { version = "0.25.6", default-features = false, features = ["jpeg", "rayon"] }
mime_guess = "2.0.5"
once_cell = "1.21.3"
poem = { version = "3.0.1", features = ["embed", "static-files"] }
rust-embed = "8.7.2"
sha2 = "0.10.9"
serde = { workspace = true }
serde_json = "1.0.140"
serde_with = "3.14.0"
snafu = { workspace = true }
tera = "1.20.0"
thiserror = { workspace = true }
time = { workspace = true }
tokio = { version = "1.45.1", features = ["signal", "rt-multi-thread", "macros"] }
tokio = { version = "1.45.1", features = ["signal", "fs", "rt-multi-thread", "macros"] }
tokio-util = "0.7.15"
tower-http = { version = "0.6.6", features = ["trace"] }
tracing = "0.1.41"
tracing-subscriber = "0.3.19"
tracing-subscriber = { version = "0.3.19", features = ["env-filter"] }
utoipa = { version = "5.4.0", features = ["axum_extras"] }
utoipa-axum = "0.2.0"
utoipa-swagger-ui = { version = "9.0.2", features = ["axum", "vendored"] }
uuid = { version = "1.17.0", features = ["v4", "fast-rng"] }
quick-xml = { version = "0.38.0", features = ["serialize"] }