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