-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
36 lines (32 loc) · 975 Bytes
/
Copy pathCargo.toml
File metadata and controls
36 lines (32 loc) · 975 Bytes
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
[package]
name = "radar-egui"
version = "0.2.0"
edition = "2021"
description = "Real-time radar HUD for RoboMaster competition"
[dependencies]
eframe = { version = "0.31", features = ["default"] }
egui = "0.31"
tokio = { version = "1", features = ["full"] }
log = "0.4"
env_logger = "0.11"
libc = "0.2"
image = { version = "0.25", features = ["png", "jpeg"] }
rerun = { version = "0.33", optional = true }
gst = { package = "gstreamer", version = "0.23", optional = true }
gst-app = { package = "gstreamer-app", version = "0.23", optional = true }
gst-video = { package = "gstreamer-video", version = "0.23", optional = true }
serial2 = { version = "0.2.37", features = ["unix"] }
deku = "0.20.3"
zmq2 = "0.5.0"
serde = { version = "1", features = ["derive"] }
serde_json = "1"
pcd-rs = "0.13"
rfd = "0.17"
[dev-dependencies]
tempfile = "3"
[features]
rerun = ["dep:rerun"]
video = ["dep:gst", "dep:gst-app", "dep:gst-video"]
[profile.release]
opt-level = 2
lto = "thin"