-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
34 lines (33 loc) · 968 Bytes
/
Copy pathCargo.toml
File metadata and controls
34 lines (33 loc) · 968 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
[workspace]
resolver = "2"
members = [
"ffmpeg_ort",
"gstreamed_candle",
"gstreamed_common",
"gstreamed_ort",
"inference_common",
"into_rerun",
"ort_common",
]
[workspace.dependencies]
# internal dependencies
gstreamed_common = { path = "gstreamed_common" }
inference_common = { path = "inference_common" }
ort_common = { path = "ort_common" }
# external dependencies
anyhow = { version = "1.0.97", features = ["backtrace"] }
clap = { version = "4.5.36", features = ["derive"] }
gstreamer = { version = "0.23.5" }
image = { version = "0.25.8", default-features = false, features = [
"jpeg",
"png",
] }
imageproc = { version = "0.25.0", default-features = false }
log = { version = "0.4.27" }
ndarray = { version = "0.16.1" }
ort = { version = "2.0.0-rc.10", default-features = true, features = [
"ndarray",
"cuda",
] }
tracing = { version = "0.1.41" }
tracing-subscriber = { version = "0.3.19", features = ["env-filter"] }