little-librarian/Cargo.toml

37 lines
1.2 KiB
TOML
Raw Permalink Normal View History

2025-07-01 08:55:08 +02:00
[package]
name = "little-librarian"
version = "0.1.0"
license = "AGPL-3.0"
edition = "2024"
[dependencies]
2025-07-01 14:02:18 +02:00
axum = { version = "0.8.4", features = ["http2", "tracing"] }
2025-07-01 08:55:08 +02:00
clap = { version = "4.5.40", features = ["derive"] }
futures = "0.3.31"
lopdf = "0.36.0"
2025-07-01 21:10:35 +02:00
postcard = { version = "1.1.2", features = ["alloc"] }
2025-07-01 08:55:08 +02:00
quick-xml = "0.38.0"
rayon = "1.10.0"
ring = "0.17.14"
scraper = "0.23.1"
2025-07-01 14:02:18 +02:00
serde = { version = "1.0.219", features = ["derive"] }
2025-07-01 08:55:08 +02:00
sha2 = "0.10.9"
snafu = { version = "0.8.6", features = ["rust_1_81"] }
2025-07-01 21:10:35 +02:00
sqlx = { version = "0.8.6", features = [ "runtime-tokio", "tls-rustls-ring", "migrate", "postgres", "derive", "uuid", "macros" ] }
2025-07-01 08:55:08 +02:00
tokenizers = "0.21.2"
tokio = { version = "1.45.1", features = ["rt-multi-thread", "macros"]}
2025-07-01 14:02:18 +02:00
tower-http = { version = "0.6.6", features = ["trace"] }
2025-07-01 08:55:08 +02:00
tracing = "0.1.41"
2025-07-01 14:02:18 +02:00
tracing-subscriber = { version = "0.3.19", features = ["env-filter"] }
2025-07-01 08:55:08 +02:00
tract-onnx = "0.21.13"
2025-07-01 14:02:18 +02:00
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"] }
2025-07-01 08:55:08 +02:00
walkdir = "2.5.0"
zip = "4.2.0"
2025-07-01 14:38:09 +02:00
[build-dependencies]
ignore = "0.4.23"
zip = { version = "4.2.0", default-features = false, features = ["deflate"] }