Files
pile/crates/pile-dataset/Cargo.toml
rm-dr 5c71e407d8
Some checks failed
CI / Typos (push) Successful in 25s
CI / Clippy (push) Successful in 3m19s
CI / Build and test (push) Failing after 3m35s
Docker / build-and-push (push) Failing after 4m33s
CI / Build and test (all features) (push) Failing after 9m32s
Image transformation
2026-03-26 11:52:00 -07:00

41 lines
975 B
TOML

[package]
name = "pile-dataset"
version = { workspace = true }
rust-version = { workspace = true }
edition = { workspace = true }
[lints]
workspace = true
[dependencies]
pile-config = { workspace = true }
pile-toolbox = { workspace = true }
pile-value = { workspace = true }
pile-io = { workspace = true }
serde_json = { workspace = true }
tantivy = { workspace = true }
tracing = { workspace = true }
chrono = { workspace = true }
toml = { workspace = true }
thiserror = { workspace = true }
tokio = { workspace = true }
tokio-stream = { workspace = true }
serde = { workspace = true, optional = true }
axum = { workspace = true, optional = true }
percent-encoding = { workspace = true, optional = true }
utoipa = { workspace = true, optional = true }
utoipa-swagger-ui = { workspace = true, optional = true }
[features]
default = []
pdfium = ["pile-value/pdfium"]
axum = [
"dep:axum",
"dep:utoipa",
"dep:utoipa-swagger-ui",
"dep:serde",
"dep:percent-encoding",
]