little-hesinde/little-hesinde/Cargo.toml
2025-07-02 21:09:37 +02:00

38 lines
1.4 KiB
TOML

[package]
name = "little-hesinde"
version = "0.3.1"
edition = "2024"
license = { workspace = true }
authors = { workspace = true }
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"
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"
time = { workspace = true }
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 = { 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"] }
[build-dependencies]
ignore = "0.4.23"
zip = { version = "4.2.0", default-features = false, features = ["deflate"] }