This repository has been archived by the owner on Dec 4, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
101 lines (89 loc) · 2.58 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
[workspace]
members = [
"unros/unros-core",
"unros/camera",
"unros/apriltag",
"unros/localization",
"unros/serial",
"unros/navigator",
"unros/rig",
"unros/smach",
"unros/unros-macros",
"unros/unros",
"unros/realsense",
# "unros/camera-info",
"unros/networking",
"unros/obstacles",
"misc/py-repl",
"misc/compute-shader",
"lunabotics/lunabot",
"lunabotics/lunabot-lib",
"lunabotics/lunabase-lib",
# "lunabotics/lunasimbot",
]
resolver = "2"
exclude = ["publishing/", "dump/", "lunabotics/lunabase/", "camera-db/"]
[workspace.dependencies]
fxhash = "0.2"
chrono = "0.4"
static_assertions = "1"
image = "0.25"
ordered-float = "4"
nalgebra = { version = "0.32", features = ["serde-serialize"] }
toml = "0.8"
serde = { version = "1", features = ["derive", "rc"] }
anyhow = "1"
crossbeam = "0.8"
quaternion-core = "0.4"
tokio = { version = "1", features = ["full"] }
clap = { version = "4", features = ["derive"] }
fast_image_resize = "2"
spin_sleep = "1"
rand = { version = "0.8", features = ["small_rng"] }
futures = "0.3.30"
serde-big-array = "0.5"
rand_distr = "0.4"
bytemuck = { version = "1", features = [ "derive" ] }
log = "0.4"
simba = "0.8"
# eigenvalues = { git = "https://github.com/Masterchef365/eigenvalues.git" }
ffmpeg-sidecar = "1.0"
interprocess = { git = "https://github.com/kotauskas/interprocess", default-features = false, branch = "main", features = ["tokio"] }
dst-init = "0.4.0"
rayon = "1.10.0"
bitvec = "1.0.1"
unros_core = { path = "unros/unros-core" }
camera = { path = "unros/camera" }
apriltag = { path = "unros/apriltag" }
localization = { path = "unros/localization" }
serial = { path = "unros/serial" }
navigator = { path = "unros/navigator" }
rig = { path = "unros/rig" }
smach = { path = "unros/smach" }
realsense = { path = "unros/realsense" }
unros-macros = { path = "unros/unros-macros" }
unros = { path = "unros/unros" }
camera-info = { path = "unros/camera-info" }
networking = { path = "unros/networking" }
obstacles = { path = "unros/obstacles" }
compute-shader = { path = "misc/compute-shader" }
py-repl = { path = "misc/py-repl" }
# The following crates need to run at full power
# in most contexts to be effective.
[profile.dev.package.realsense]
opt-level = 3
[profile.dev.package.apriltag]
opt-level = 3
[profile.dev.package.localization]
opt-level = 3
[profile.dev.package.camera]
opt-level = 3
[profile.dev.package.lunabot]
opt-level = 3
[profile.release.package.lunabot]
debug = true
# lto = "thin"
[profile.release.package.lunabase-lib]
debug = true
[profile.release.package.lunasimbot]
debug = true