-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
63 lines (56 loc) · 1.1 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
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
[package]
authors = ["Sakamoto Yoshiki <g196010r@icu.ac.jp>"]
description = "Crate of loading cifar10"
documentation = "https://docs.rs/cifar_10_loader/"
license = "MIT"
name = "cifar_10_loader"
readme = "README.md"
repository = "https://github.com/29rou/cifar-10-loader-rs"
version = "0.2.0"
[dependencies]
itertools = "0.7.1"
regex = "0.2.2"
walkdir = "2.0.1"
rand = "0.4.1"
[dependencies.clippy]
optional = true
version = "0.0.176"
[dependencies.image]
default-features = false
version = "0.18.0"
[dependencies.rayon]
optional = true
version = "0.9.0"
[dev-dependencies]
curl = "0.4.8"
find_folder = "0.3.0"
image = "0.18.0"
rand = "0.4.1"
[features]
benchmarks = ["image/benchmarks"]
bmp = ["image/bmp"]
default = [
"rayon",
"gif_codec",
"jpeg",
"ico",
"png_codec",
"ppm",
"tga",
"tiff",
"webp",
"bmp",
"hdr",
]
gif_codec = ["image/gif_codec"]
hdr = ["image/hdr"]
ico = ["image/ico"]
jpeg = ["image/jpeg"]
png_codec = ["image/png"]
ppm = ["image/ppm"]
tga = ["image/tga"]
tiff = ["image/tiff"]
webp = ["image/webp"]
[lib]
name = "cifar_10_loader"
path = "./src/lib.rs"