-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
65 lines (61 loc) · 1.58 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
64
65
[package]
name = 'cv-convert'
description = 'Type conversions among famous Rust computer vision libraries'
version = '0.25.0'
authors = ['jerry73204 <[email protected]>']
edition = '2021'
documentation = 'https://docs.rs/cv-convert/'
repository = 'https://github.com/jerry73204/rust-cv-convert.git'
homepage = 'https://github.com/jerry73204/rust-cv-convert/'
readme = 'README.md'
license = 'MIT'
[package.metadata.docs.rs]
features = ['docs-only']
[features]
default = [
'tch',
'rsmpeg',
'ndarray',
'opencv',
'nalgebra',
'image',
'imageproc',
]
docs-only = [
'tch',
'rsmpeg',
'ndarray',
'opencv',
'nalgebra',
'image',
'imageproc',
]
[dev-dependencies]
approx = '0.5'
itertools = '0.13'
rand = '0.8'
[dependencies]
half = '2.4'
anyhow = '1.0'
num-traits = '0.2'
tch = { version = '0.18', default-features = true, optional = true }
image = { version = '0.25', default-features = true, optional = true }
nalgebra = { version = '0.33', default-features = true, optional = true }
ndarray = { version = '0.16', default-features = true, optional = true }
imageproc = { version = '0.25', default-features = true, optional = true }
rsmpeg = { git = "https://github.com/larksuite/rsmpeg", branch = "master", default-features = false, optional = true, features = [
"ffmpeg7", "link_system_ffmpeg"
] }
opencv = { version = '0.93', default-features = false, features = [
"dnn",
"videoio",
"highgui",
"imgproc",
"imgcodecs",
"calib3d",
"features2d",
"objdetect",
"tracking",
"stitching",
"clang-runtime",
], optional = true }