-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
55 lines (49 loc) · 1.46 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
[workspace]
resolver = "2"
members = [
"savant_core",
"savant_core_py",
"savant_python",
"savant_protobuf",
"savant_plugins/*",
]
[workspace.package]
version = "0.4.13"
edition = "2021"
authors = ["Ivan Kudriavtsev <ivan.a.kudryavtsev@gmail.com>"]
description = "Savant Rust core functions library"
homepage = "https://github.com/insight-platform/savant-rs"
repository = "https://github.com/insight-platform/savant-rs"
readme = "README.md"
keywords = ["computer-vision", "video-processing"]
categories = ["algorithms", "data-structures", "computer-vision"]
license = "Apache-2.0"
rust-version = "1.83"
[workspace.dependencies]
anyhow = "1.0"
evalexpr = { version = "11", features = ["rand", "regex_support"] }
geo = "=0.28"
lazy_static = "1.5"
log = "0.4"
savant_core = { path = "savant_core" }
savant_core_py = { path = "savant_core_py" }
hashbrown = { version = "0.15", features = ["serde"] }
opentelemetry = "=0.24"
opentelemetry-otlp = { version = "=0.17", features = ["http-json", "http-proto", "tls", "reqwest-rustls"] }
parking_lot = { version = "0.12", features = ["deadlock_detection"] }
prometheus-client = "0.23"
pyo3 = "0.23"
pyo3-build-config = "0.23"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
thiserror = "2"
tokio = { version = "1.42", features = ["rt-multi-thread"] }
prost = "0.13"
prost-types = "0.13"
prost-build = "0.13"
[profile.release]
opt-level = 3
codegen-units = 1
[profile.bench]
opt-level = 3
codegen-units = 1