[package]
edition = "2024"
rust-version = "1.88.0"
name = "dataset-ml"
version = "0.1.0"
authors = ["SomeB1oody <stanyin64@gmail.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Built-in machine learning dataset loaders (Iris, Boston Housing, Diabetes, Titanic, Wine Quality) built on top of dataset-core"
documentation = "https://docs.rs/dataset-ml"
readme = "README.md"
keywords = [
"dataset",
"machine-learning",
"iris",
"titanic",
"ndarray",
]
categories = ["science"]
license = "MIT"
repository = "https://github.com/SomeB1oody/dataset-core"
[package.metadata.docs.rs]
all-features = true
rustdoc-args = [
"--cfg",
"docsrs",
]
[lib]
name = "dataset_ml"
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"
[dependencies.csv]
version = "1.4.0"
[dependencies.dataset-core]
version = "0.2.0"
features = ["utils"]
[dependencies.ndarray]
version = "0.17.2"