-
Notifications
You must be signed in to change notification settings - Fork 7
/
Cargo.toml
30 lines (27 loc) · 995 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]
authors = ["Embassy project contributors"]
description = "Bluetooth HCI data types"
edition = "2021"
license = "MIT OR Apache-2.0"
name = "bt-hci"
repository = "https://github.com/embassy-rs/bt-hci"
version = "0.1.2"
documentation = "https://docs.rs/bt-hci"
keywords = ["bluetooth", "hci", "BLE"]
categories = ["embedded", "hardware-support", "no-std"]
rust-version = "1.77"
exclude = [".github", ".vscode", "ci.sh", "rust-toolchain.toml", "rustfmt.toml", "update_uuids"]
[features]
defmt = ["dep:defmt", "embedded-io/defmt-03", "embedded-io-async/defmt-03"]
[dependencies]
defmt = { version = "0.3", optional = true }
log = { version = "0.4", optional = true }
embedded-io = "0.6.0"
embedded-io-async = "0.6.0"
embassy-sync = "0.6"
embassy-time = { version = "0.3", optional = true }
heapless = "0.8"
futures-intrusive = { version = "0.5.0", default-features = false }
uuid = { version = "1.11.0", default-features = false, optional = true }
[workspace]
members = ["update_uuids"]