-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
33 lines (28 loc) · 1.01 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 = "iterative_methods"
version = "0.2.1"
authors = ["Daniel Vainsencher <[email protected]>", "Daniel Fox <[email protected]>"]
edition = "2018"
description = "Iterative methods and associated utilities as StreamingIterators."
license = "MIT OR Apache-2.0"
keywords = ["math","stream","machine-learning","algorithm","optimization"]
repository = "https://github.com/daniel-vainsencher/iterative_methods_rs"
readme = "README.md"
exclude = ["/local", "/visualizations", "/p3", "/visualizations_python/__pycache__", "visualizations_python/parameters_for_histogram.yaml"]
[lib]
name = "iterative_methods"
path = "src/lib.rs"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
streaming-iterator = "0.1.0"
yaml-rust = "0.4"
rand = "0.8.0"
rand_pcg = "0.3.0"
rand_distr = "0.4.0"
nalgebra = "0.19.0"
eigenvalues = "0.3.1"
[dependencies.ndarray]
version = "0.13.0"
default-features = false
[dev-dependencies]
quickcheck = "= 1.0.1"