-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
43 lines (34 loc) · 816 Bytes
/
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
[package]
name = "fastdata"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
crossbeam-channel = "0.5.8"
glob = "0.3.1"
io-uring = "0.6.0"
opencv = { version = "0.81.3", default-features = false, features = [
"imgcodecs",
"imgproc",
], optional = true }
pyo3 = { version = "0.18.3", features = ["extension-module"], optional = true }
rand = "0.8.5"
rayon = "1.7.0"
thiserror = "1.0.40"
zune-jpeg = "0.3.17"
zune-png = "0.2.1"
dlpark = "0.2.1"
kanal = { version = "0.1.0-pre8" }
[features]
default = ["pyo3"]
opencv = ["dep:opencv"]
pyo3 = ["dep:pyo3"]
[workspace]
members = [
"examples/withpy",
"fastdata-tfrecord",
"fastdata-opencv",
"fastdata-datapipe",
]
[profile.dev]
rpath = true