diff --git a/candle-datasets/Cargo.toml b/candle-datasets/Cargo.toml index 32c8b3b1..f4472a08 100644 --- a/candle-datasets/Cargo.toml +++ b/candle-datasets/Cargo.toml @@ -9,9 +9,6 @@ categories.workspace = true license.workspace = true readme = "README.md" -[lib] -crate-type=["dylib"] - [dependencies] byteorder = { workspace = true } candle = { path = "../candle-core", version = "0.2.0", package = "candle-core" } @@ -22,5 +19,5 @@ memmap2 = { workspace = true } tokenizers = { workspace = true, features = ["onig"] } rand = { workspace = true } thiserror = { workspace = true } -parquet = { version = "45.0.0"} +parquet = { workspace = true} image = { workspace = true } diff --git a/candle-datasets/src/hub.rs b/candle-datasets/src/hub.rs index ae40bc57..b135e148 100644 --- a/candle-datasets/src/hub.rs +++ b/candle-datasets/src/hub.rs @@ -57,6 +57,7 @@ pub fn from_hub(api: &Api, dataset_id: String) -> Result