-
Notifications
You must be signed in to change notification settings - Fork 4
/
Cargo.toml
33 lines (31 loc) · 1.16 KB
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
[package]
name = "automl"
version = "0.3.0"
authors = ["Chris McComb <[email protected]>"]
description = "Automated machine learning for classification and regression"
edition = "2021"
readme = "README.md"
repository = "https://github.com/cmccomb/rust-automl"
homepage = "https://github.com/cmccomb/rust-automl"
documentation = "https://docs.rs/automl"
license = "MIT OR Apache-2.0"
keywords = ["machine-learning", "ml", "ai", "smartcore", "automl"]
categories = ["algorithms", "mathematics", "science"]
[dependencies]
smartcore = {version = "0.2.1", features=["serde"]}
serde = {version = "1.0.130", features=["derive"]}
bincode = "1.3.3"
itertools = "0.10.1"
comfy-table = "5.0.0"
humantime = "2.1.0"
ndarray = {version = "0.15.3", optional = true}
polars = {version = "0.17.0", features = ["ndarray"], optional = true}
url = {version = "2.2.2", optional = true}
temp-file = {version = "0.1.6", optional = true}
csv-sniffer = { version = "0.1.1", optional = true }
minreq = {version = "2.6.0", optional = true, features = ["json-using-serde", "https"]}
serde_yaml = "0.8.23"
[features]
default = []
nd = ["ndarray"]
csv = ["polars", "nd", "url", "temp-file", "minreq", "csv-sniffer"]