dataset-core 0.1.0

A generic, thread-safe dataset container with lazy loading and caching, plus optional utilities and built-in dataset loaders
Documentation
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

[package]
edition = "2024"
rust-version = "1.88.0"
name = "dataset-core"
version = "0.1.0"
authors = ["SomeB1oody <stanyin64@gmail.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A generic, thread-safe dataset container with lazy loading and caching, plus optional utilities and built-in dataset loaders"
documentation = "https://docs.rs/dataset-core"
readme = "README.md"
keywords = [
    "dataset",
    "lazy-loading",
    "caching",
    "data",
    "machine-learning",
]
categories = [
    "caching",
    "data-structures",
    "science",
]
license = "MIT"
repository = "https://github.com/SomeB1oody/dataset-core"

[package.metadata.docs.rs]
all-features = true
rustdoc-args = [
    "--cfg",
    "docsrs",
]

[package.metadata.playground]
features = []

[features]
datasets = [
    "utils",
    "dep:ndarray",
    "dep:csv",
]
utils = [
    "dep:ureq",
    "dep:zip",
    "dep:tempfile",
    "dep:sha2",
    "dep:thiserror",
]

[lib]
name = "dataset_core"
path = "src/lib.rs"

[[test]]
name = "dataset_boston_housing_test"
path = "tests/dataset_boston_housing_test.rs"

[[test]]
name = "dataset_diabetes_test"
path = "tests/dataset_diabetes_test.rs"

[[test]]
name = "dataset_iris_test"
path = "tests/dataset_iris_test.rs"

[[test]]
name = "dataset_red_wine_quality_test"
path = "tests/dataset_red_wine_quality_test.rs"

[[test]]
name = "dataset_titanic_test"
path = "tests/dataset_titanic_test.rs"

[[test]]
name = "dataset_white_wine_quality_test"
path = "tests/dataset_white_wine_quality_test.rs"

[[test]]
name = "utils_test"
path = "tests/utils_test.rs"

[dependencies.csv]
version = "1.4.0"
optional = true

[dependencies.ndarray]
version = "0.17.2"
optional = true

[dependencies.sha2]
version = "0.11.0"
optional = true

[dependencies.tempfile]
version = "3.27.0"
optional = true

[dependencies.thiserror]
version = "2.0"
optional = true

[dependencies.ureq]
version = "3"
optional = true

[dependencies.zip]
version = "8.5.1"
optional = true

[profile.dev]
opt-level = 0

[profile.release]
opt-level = 3