forked from Ncerzzk/RustPilot
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
35 lines (29 loc) · 833 Bytes
/
Cargo.toml
File metadata and controls
35 lines (29 loc) · 833 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
[package]
name = "rust_pilot"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
rpos = {path = "./rpos"}
gz = { version = "0.7.4", features = ["harmonic"] ,optional = true }
gz-msgs-common = {version = "0.7.4", optional = true}
toml = "0.8.8"
serde = {version = "1.0.193",features = ["derive"]}
quaternion-core = "0.5.0"
clap = { version = "4.4.12", features = ["derive"] }
termion = "3.0.0"
crsf = "1.0.1"
serialport = {version = "4.3.0",default-features = false}
spidev = "0.6.0"
mavlink = "0.13.1"
dashmap = "6.1.0"
serde_json = "1.0.140"
[dev-dependencies]
bitfield = "0.14"
crc = "3.0"
rand = "0.8.4"
[features]
default = []
gzsim = ["rpos/lock_step_enabled","gz","gz-msgs-common"]
[build-dependencies]
nom-kconfig = "0.2.0"