-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
45 lines (38 loc) · 1020 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
44
45
[package]
name = "patch-tracker"
version = "0.2.1"
edition = "2021"
authors = ["Powei Lin <poweilin1994@gmail.com>"]
readme = "README.md"
license = "MIT OR Apache-2.0"
description = "Patch tracker"
homepage = "https://github.com/powei-lin/patch-tracker-rs"
repository = "https://github.com/powei-lin/patch-tracker-rs"
keywords = ["opticalflow"]
categories = ["science", "mathematics"]
exclude = [
"docs/*.avif",
]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
image = "0.25.0"
imageproc = "0.25.0"
log = "0.4.22"
nalgebra = "0.33.0"
rayon = "1.10.0"
[dev-dependencies]
ab_glyph = "0.2.29"
env_logger = "0.11.5"
glob = "0.3.1"
rand = "0.8.5"
rand_chacha = "0.3.1"
show-image = { version = "0.14.0", features = ["image"] }
clap = { version = "4.5.20", features = ["derive"] }
[[example]]
name = "single_camera"
path = "examples/single_camera.rs"
[[example]]
name = "stereo_camera"
path = "examples/stereo_camera.rs"
[lib]
name = "patch_tracker"