forked from tudsat-rocket/sam
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
36 lines (34 loc) · 1.34 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
[workspace]
resolver = "2"
members = [
"gui", # Main ground control GUI
"galadriel", # Basic numerical rocketry simulation, used via GUI or standalone
"state_estimator", # State estimation used both in SITL simulations and firmware
"shared_types", # Types like telemetry and settings shared between firmware, simulation and GUI
]
default-members = ["gui"] # Allows running GUI by simply running `$ cargo run` in root of workspace
# We specify dependencies we use in multiple places here, so we can make sure
# every crate uses the same version.
[workspace.dependencies]
# Workspace member packages
galadriel = { path = "galadriel" }
shared_types = { path = "shared_types" }
state_estimator = { path = "state_estimator" }
# CLI & logging
clap = { version = "3.2", features = ["derive"] }
log = "0.4"
env_logger = "0.10"
# Math
nalgebra = { version = "0.32", features = ["macros", "mint", "serde-serialize-no-std"] }
# egui & friends
egui = { version = "0.26", default-features = false }
eframe = { version = "0.26", default-features = false, features = ["glow", "wayland", "x11"] }
egui_plot = "0.26"
egui_extras = { version = "0.26", features = ["image"] }
# serialization & communication
serde = { version = "1", features = ["derive"] }
serde_json = "1.0.89"
postcard = "1.0"
siphasher = "0.3"
[profile.release]
lto = "thin"