-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathCargo.toml
More file actions
92 lines (76 loc) · 1.72 KB
/
Cargo.toml
File metadata and controls
92 lines (76 loc) · 1.72 KB
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
[package]
name = "rustml"
version = "0.0.7"
authors = ["Daniel <git.daniele@gmail.com>"]
readme = "README.md"
license = "MIT/Apache-2.0"
repository = "https://github.com/daniel-e/rustml"
homepage = "http://daniel-e.github.io/rustml/rustml/"
documentation = "http://daniel-e.github.io/rustml/rustml/"
description = """
A library for doing maching learning in Rust.
"""
build = "build.rs"
# Currently we can only upload up to 10MB. So we need to remove
# everything that is not required for building the library.
exclude = [
"atlas/*",
"build/*",
"build_all.sh",
"build_examples.sh",
"build_tests",
"doc.sh",
"examples/*",
"datasets/*",
"prototyping/*",
]
[lib]
name = "rustml"
path = "src/lib.rs"
[[example]]
name = "vector_addition"
path = "examples/vector_addition.rs"
[[example]]
name = "mnist_digits"
path = "examples/mnist_digits.rs"
[[example]]
name = "matrix_multiplication"
path = "examples/matrix_multiplication.rs"
[[example]]
name = "scale_matrix"
path = "examples/scale_matrix.rs"
[[example]]
name = "video_histogram"
path = "examples/video_histogram.rs"
[[example]]
name = "gradient_descent"
path = "examples/gradient_descent.rs"
[[example]]
name = "octave_plot"
path = "examples/octave_plot.rs"
[[example]]
name = "linear_regression"
path = "examples/linear_regression.rs"
[[example]]
name = "image_grid"
path = "examples/image_grid.rs"
[[example]]
name = "plots"
path = "examples/plots.rs"
[[example]]
name = "neuralnetwork"
path = "examples/neuralnetwork.rs"
[[example]]
name = "mnistdigits2matrix"
path = "examples/mnistdigits2matrix.rs"
[[example]]
name = "opencv"
path = "examples/opencv.rs"
[dependencies]
libc = "0.2.36"
rand = "0.4.2"
num = "0.1.41"
flate2 = "0.2.20"
time = "0.1.39"
regex = "1.5.5"
getopts = "0.2.17"