-
Notifications
You must be signed in to change notification settings - Fork 7
/
Cargo.toml
57 lines (49 loc) · 1.13 KB
/
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
[package]
edition = "2018"
name = "stm32wb55"
version = "0.1.0"
authors = ["eupn <[email protected]>"]
categories = ["embedded", "hardware-support", "no-std"]
description = "Interface to STM32WB55 Bluetooth radios"
keywords = ["spi", "bare-metal", "embedded-hal-driver"]
license = "MIT/Apache-2.0"
repository = "https://github.com/eupn/stm32wb55"
readme = "README.md"
[features]
default = ["ms"]
ms = []
[dependencies]
stm32wb-hal = { version = "0.1.1" }
nb = "0.1.1"
bluetooth-hci = "0.1"
bitflags = "1.0"
bbqueue = "0.4.8"
[dependencies.embedded-hal]
version = "0.2.3"
features = ["unproven"]
[dependencies.byteorder]
version = "1"
default-features = false
# For examples
[dev-dependencies]
cortex-m = "0.6.2"
stm32wb-pac = "0.2"
as-slice = "0.1"
bit_field = "0.10.0"
heapless = "0.5.3"
nb = "0.1"
cortex-m-rtfm = "0.5"
panic-halt = "0.2.0"
panic-reset = "0.1.0"
panic-semihosting = "0.5.0"
cortex-m-semihosting = { version = "0.3.5", features = ["jlink-quirks"] }
cortex-m-rt = "0.6.6"
usb-device = "0.2"
usbd-serial = "0.1.0"
[profile.dev]
incremental = false
codegen-units = 1
[profile.release]
codegen-units = 1
debug = true
lto = true