-
Notifications
You must be signed in to change notification settings - Fork 56
Expand file tree
/
Copy pathCargo.toml
More file actions
38 lines (34 loc) · 753 Bytes
/
Copy pathCargo.toml
File metadata and controls
38 lines (34 loc) · 753 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
32
33
34
35
36
37
38
[package]
name = "rustlearn"
version = "0.5.0"
description = "A machine learning package for Rust."
documentation = "https://maciejkula.github.io/rustlearn/doc/rustlearn/"
homepage = "https://github.com/maciejkula/rustlearn"
repository = "https://github.com/maciejkula/rustlearn"
readme = "readme.md"
license = "Apache-2.0"
keywords = ["machine-learning"]
authors = ["Maciej Kula <maciej.kula@gmail.com>"]
exclude = [
"scripts/*",
"examples/*",
"test_data/*",
]
links = "libsvm"
build = "build.rs"
[dependencies]
rand = "0.3"
crossbeam = "0.2.9"
serde = "1.0"
serde_derive = "1.0"
[build-dependencies]
cc = "1.0"
[dev-dependencies]
bincode = "1.0"
csv = "0.14"
hyper = "0.7.0"
serde_json = "1.0"
time = "0.1"
[features]
all_tests = []
bench = []