Updates the requirements on [rand](https://github.com/rust-random/rand) to permit the latest version. - [Release notes](https://github.com/rust-random/rand/releases) - [Changelog](https://github.com/rust-random/rand/blob/master/CHANGELOG.md) - [Commits](https://github.com/rust-random/rand/compare/0.7.3...0.8.3) Signed-off-by: dependabot-preview[bot] <support@dependabot.com>
49 lines
1.2 KiB
TOML
49 lines
1.2 KiB
TOML
[package]
|
|
name = "smartcore"
|
|
description = "The most advanced machine learning library in rust."
|
|
homepage = "https://smartcorelib.org"
|
|
version = "0.2.0"
|
|
authors = ["SmartCore Developers"]
|
|
edition = "2018"
|
|
license = "Apache-2.0"
|
|
documentation = "https://docs.rs/smartcore"
|
|
repository = "https://github.com/smartcorelib/smartcore"
|
|
readme = "README.md"
|
|
keywords = ["machine-learning", "statistical", "ai", "optimization", "linear-algebra"]
|
|
categories = ["science"]
|
|
|
|
[features]
|
|
default = ["datasets"]
|
|
ndarray-bindings = ["ndarray"]
|
|
nalgebra-bindings = ["nalgebra"]
|
|
datasets = []
|
|
|
|
[dependencies]
|
|
ndarray = { version = "0.14", optional = true }
|
|
nalgebra = { version = "0.23.0", optional = true }
|
|
num-traits = "0.2.12"
|
|
num = "0.3.0"
|
|
rand = "0.8.3"
|
|
rand_distr = "0.3.0"
|
|
serde = { version = "1.0.115", features = ["derive"], optional = true }
|
|
|
|
[target.'cfg(target_arch = "wasm32")'.dependencies]
|
|
rand = { version = "0.7.3", features = ["wasm-bindgen"] }
|
|
|
|
[dev-dependencies]
|
|
criterion = "0.3"
|
|
serde_json = "1.0"
|
|
bincode = "1.3.1"
|
|
|
|
[target.'cfg(target_arch = "wasm32")'.dev-dependencies]
|
|
wasm-bindgen-test = "0.3"
|
|
|
|
[[bench]]
|
|
name = "distance"
|
|
harness = false
|
|
|
|
[[bench]]
|
|
name = "naive_bayes"
|
|
harness = false
|
|
required-features = ["ndarray-bindings", "nalgebra-bindings"]
|