-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathCargo.toml
29 lines (26 loc) · 821 Bytes
/
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
[package]
name = "easy-ml"
version = "2.0.0-dev.1"
authors = ["Skeletonxf <skeletonxf@gmail.com>"]
edition = "2021"
repository = "https://github.com/Skeletonxf/easy-ml"
description = "Machine learning library providing matrices, named tensors, linear algebra and automatic differentiation aimed at being easy to use"
keywords = ["machine-learning", "tensors", "matrices", "linear-algebra"]
categories = ["science", "wasm"]
readme = "README.md"
license = "MPL-2.0"
[features]
default = []
serde = ["dep:serde", "dep:serde_arrays"]
[dependencies]
serde = { version = "1.0", features = ["derive"], optional = true }
serde_arrays = { version = "0.1.0", optional = true }
[dev-dependencies]
rand = "0.8"
rand_chacha = "0.3"
textplots = "0.8"
num-bigint = "0.4"
num-traits = "0.2"
js-sys = "0.3"
toml = "0.5.11"
rgb = "0.8"