-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
30 lines (24 loc) · 945 Bytes
/
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
[package]
name = "adafruit-bluefruit-protocol"
version = "1.0.0"
edition = "2021"
rust-version = "1.81"
description = "A `no_std` parser for the Adafruit Bluefruit LE Connect controller protocol."
repository = "https://github.com/rust-embedded-community/adafruit-bluefruit-protocol-rs"
categories = ["embedded", "hardware-support", "no-std", "no-std::no-alloc"]
keywords = ["adafruit", "bluefruit", "bluetooth", "protocol"]
license = "MIT OR Apache-2.0"
[dependencies]
defmt = { version = "0.3", optional = true }
rgb = { version = "0.8", optional = true }
serde = { version = "1.0", features = ["derive"], optional = true }
[features]
default = ["accelerometer_event", "button_event", "color_event", "gyro_event", "location_event", "magnetometer_event", "quaternion_event"]
defmt = ["dep:defmt"]
accelerometer_event = []
button_event = []
color_event = []
gyro_event = []
location_event = []
magnetometer_event = []
quaternion_event = []