[package]
name = "rustic_ml"
version = "0.0.3"
authors = ["Kjetil Indrehus <kjetilindrehus@gmail.com>"]
edition = "2021"
license = "MIT"
description = "A machine learning library created from scratch with Rust."
documentation = "https://docs.rs/rustic_ml"
repository = "https://github.com/KjetilIN/rustic_ml"
readme = "README.md"
include = [
"Cargo.toml",
"LICENSE",
"README.md",
"docs/*.pdf",
"src/**/*.rs",
"benches/*.rs",
]
categories = [
"science",
"mathematics"
]
keywords = [
"machinelearning",
"neuralnetworks",
"deeplearning",
]
[dependencies]
rand = "0.8.5"
[features]
extensive_benchmark = []
[dev-dependencies]
criterion = {version="0.4", features=["html_reports"]}
[[bench]]
name = "matrix_benchmark"
harness = false