-
Notifications
You must be signed in to change notification settings - Fork 17
Expand file tree
/
Copy pathCargo.toml
More file actions
31 lines (26 loc) · 863 Bytes
/
Cargo.toml
File metadata and controls
31 lines (26 loc) · 863 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]
name = "cuticula"
description = "Data Preprocessing library for Machine Learning"
authors = ["Michael Hirn <mj@autumnai.com>"]
version = "0.2.0"
repository = "https://github.com/autumnai/cuticula"
homepage = "https://github.com/autumnai/cuticula"
documentation = "http://autumnai.github.io/cuticula"
readme = "README.md"
keywords = ["preprocessing", "data-preprocessing", "transformation", "encoding",
"machine-learning"]
license = "MIT OR Apache-2.0"
[dependencies]
collenchyma = { version = "0.0.8", default-features = false, features = ["native"] } # native feature to read/write data into tensors
image = "0.7.0"
murmurhash3 = "0.0.5"
modifier = "0.1"
clippy = { version = "0.0.54", optional = true }
[features]
default = ["native"]
native = []
cuda = ["collenchyma/cuda"]
opencl = ["collenchyma/opencl"]
dev = []
lint = ["clippy"]
travis = []