33 lines
855 B
TOML
33 lines
855 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 }
|
|
|
|
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 }
|
|
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"]
|