-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathCargo.toml
53 lines (45 loc) · 1.37 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
[package]
name = "od_opencv"
repository = "https://github.com/LdDl/object-detection-opencv-rust"
readme = "README.md"
keywords = [
"computer-vision",
"object-detection",
"yolo",
"opencv",
"yolo-v8",
]
license = "MIT"
version = "0.1.6"
edition = "2021"
rust-version = "1.73"
authors = ["Dimitrii Lopanov <sexykdi@gmail.com>"]
exclude = ["/.github", "/ci", "/tools", "release.toml", "rustfmt.toml", "download_v3_tiny.sh", "download_v4_tiny.sh", "download_v7_tiny.sh", "download_v8_n.sh", "/images", "/pretrained"]
description = "Object detection utilities in Rust programming language for YOLO-based neural networks in OpenCV ecosystem"
homepage = "https://github.com/LdDl/object-detection-opencv-rust"
documentation = "https://docs.rs/od_opencv"
categories = [
"algorithms",
"multimedia",
"computer-vision",
"mathematics",
"science",
]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[lib]
name = "od_opencv"
path = "src/lib.rs"
doctest = false
[[example]]
name = "yolo_v3_tiny"
[[example]]
name = "yolo_v4_tiny"
[[example]]
name = "yolo_v7_tiny"
[[example]]
name = "yolo_v8_n"
[dependencies]
lazy_static = "1.4.0"
opencv = { version = "0.91.3", default-features = false, features = ["dnn", "imgcodecs", "imgproc"] }
[patch.crates-io]
cc = { git = "https://github.com/rust-lang/cc-rs.git", version = "1.0", tag = "1.0.79" }