crsf-rs/Cargo.toml

29 lines
706 B
TOML
Raw Permalink Normal View History

2024-01-30 19:12:50 +01:00
[package]
2024-01-30 20:15:03 +01:00
name = "crsf-rs"
2024-01-30 19:12:50 +01:00
version = "0.1.0"
edition = "2021"
2024-01-30 20:15:03 +01:00
description = "This crate provides a #[no_std] parser for the crossfire protocol"
license = "MIT OR Apache-2.0"
2024-01-30 19:12:50 +01:00
repository = "https://git.mkaenner.de/max/lib-rs"
2024-01-30 20:15:03 +01:00
keywords = ["crsf", "crossfire"]
categories = ["embedded"]
authors = ["Max Känner <max.kaenner@gmail.com>"]
2024-01-30 19:12:50 +01:00
[lints.rust]
unsafe_code = "forbid"
[lints.clippy]
enum_glob_use = "deny"
pedantic = "deny"
nursery = "deny"
unwrap_used = "deny"
cargo = "warn"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
2024-01-30 22:52:18 +01:00
num_enum = { version = ">=0.5", default-features = false }
bitfield = ">=0.13"
heapless = ">=0.7"
crc = ">=3.0"