-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
51 lines (50 loc) · 1.45 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
[package]
name = "segs"
version = "0.1.0"
# if you're a contributor, you should add your name here
authors = ["Federico Lolli <[email protected]>"]
edition = "2021"
description = "Skyward Enhanced Ground Software"
license = "MIT"
[dependencies]
# ======= GUI & Rendering =======
egui_tiles = "0.10"
eframe = { version = "0.29", features = ["persistence"] }
egui = { version = "0.29", features = ["log"] }
egui_plot = "0.29"
egui_file = "0.19"
# =========== Asynchronous ===========
tokio = { version = "1.41", features = [
"rt-multi-thread",
"net",
"parking_lot",
"sync",
] }
# =========== Mavlink ===========
skyward_mavlink = { git = "https://git.skywarder.eu/avn/swd/mavlink/mavlink-skyward-lib.git", branch = "rust-strum", features = [
"reflection",
"orion",
"serde",
] }
mavlink-bindgen = { version = "0.13.1", features = ["serde"] }
# ========= Persistency =========
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
# =========== Logging ===========
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
# =========== Performance ===========
# for fast mutexes
parking_lot = "0.12"
# for fast channels
crossbeam-channel = "0.5"
# =========== Utility ===========
# for dynamic dispatch
enum_dispatch = "0.3"
egui_extras = "0.29.1"
strum = "0.26"
strum_macros = "0.26"
anyhow = "1.0"
ring-channel = "0.12.0"
thiserror = "2.0.7"
uuid = { version = "1.12.1", features = ["serde", "v7"] }