-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
31 lines (25 loc) · 781 Bytes
/
Cargo.toml
File metadata and controls
31 lines (25 loc) · 781 Bytes
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
[package]
authors = ["Archit Bhonsle <abhonsle2000@gmail.com>"]
description = "Regression and Classification powered by WebAssembly"
edition = "2018"
license = "MIT"
name = "supervised"
repository = "https://github.com/ml-wasm/supervised/"
version = "0.1.0"
[lib]
crate-type = ["cdylib", "rlib"]
[features]
default = ["console_error_panic_hook"]
[dependencies]
console_error_panic_hook = { version = "0.1", optional = true }
js-sys = "0.3"
linalg = { path = "./dependencies/linalg", default-features = false }
wasm-bindgen = "0.2"
# Hopefully remove this later
ndarray = { version = "0.15", features = ["serde", "rayon", "matrixmultiply-threading"] }
ndarray-rand = "0.14"
ndarray-stats = "0.5"
[dev-dependencies]
wasm-bindgen-test = "0.3.13"
[profile.release]
opt-level = 3