-
Notifications
You must be signed in to change notification settings - Fork 103
Expand file tree
/
Copy pathCargo.toml
More file actions
24 lines (21 loc) · 780 Bytes
/
Cargo.toml
File metadata and controls
24 lines (21 loc) · 780 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
[workspace]
members = ["mavlink", "mavlink-bindgen", "mavlink-core"]
resolver = "1"
[workspace.dependencies]
crc-any = { version = "2.3.5", default-features = false }
num-traits = { version = "0.2", default-features = false }
num-derive = "0.4"
bitflags = { version = "2.9.1", default-features = false }
byteorder = { version = "1.3.4", default-features = false }
[workspace.package]
edition = "2024"
rust-version = "1.85.0"
keywords = ["mavlink", "parser", "protocol", "embedded"]
categories = ["aerospace", "aerospace::protocols", "parsing", "embedded"]
[workspace.lints.clippy]
cargo = { level = "warn", priority = -1 }
multiple_crate_versions = "allow"
semicolon_if_nothing_returned = "warn"
unnecessary_semicolon = "warn"
uninlined_format_args = "warn"
use_self = "warn"