-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathCargo.toml
66 lines (55 loc) · 1.39 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
66
[package]
name = "similari-trackers-rs"
authors = ["Ivan Kudriavtsev <[email protected]>"]
description = "Machine learning framework for building object trackers and similarity search engines"
homepage = "https://github.com/insight-platform/Similari"
repository = "https://github.com/insight-platform/Similari"
readme = "README.md"
keywords = ["machine-learning", "similarity", "tracking", "SORT", "DeepSORT"]
categories = ["algorithms", "data-structures", "computer-vision", "science"]
version = "0.26.11"
edition = "2021"
license = "Apache-2.0"
rust-version = "1.66"
[lib]
crate-type = ["cdylib", "lib"]
name = "similari"
[features]
default = ["python"]
python = ["dep:pyo3", "dep:pyo3-build-config", "dep:pyo3-log"]
[dependencies]
itertools = "0.12"
anyhow = "1.0"
thiserror = "1.0"
once_cell = "1.19"
num_cpus = "1.16"
ultraviolet = "0.9"
crossbeam = "0.8"
rand = "0.8"
log = "0.4"
nalgebra = "0.32"
pathfinding = "4.8"
geo = "0.27"
rayon = "1.8"
env_logger = "0.10"
[dependencies.pyo3]
version = "0.20"
features = ["extension-module"]
optional = true
[dependencies.pyo3-log]
version = "0.8"
optional = true
[build-dependencies]
pyo3-build-config = { version = "0.18", optional = true }
[dev-dependencies]
wide = "0.7"
[profile.dev]
opt-level = 3
[profile.release]
opt-level = 3
codegen-units = 1
[profile.bench]
opt-level = 3
codegen-units = 1
[package.metadata.maturin]
python-source = "python"