forked from eupn/stm32wb-hal
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
84 lines (70 loc) · 1.57 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
[package]
name = "stm32wb-hal"
version = "0.1.14"
authors = ["eupn <[email protected]>"]
description = "Hardware abstraction layer for the STM32WB55 chips"
keywords = ["no-std", "stm32wb", "stm32wb55", "embedded", "embedded-hal"]
categories = [
"embedded",
"hardware-support",
"no-std",
]
repository = "https://github.com/eupn/stm32wb-hal"
readme = "README.md"
license = "MIT OR Apache-2.0"
exclude = [
".travis.yml",
".gitignore",
"docs/",
"docs/*"
]
edition = "2018"
[dependencies]
cortex-m = "0.6.2"
embedded-dma = "0.1"
nb = "0.1.1"
stm32wb-pac = "0.2"
as-slice = "0.1"
cortex-m-semihosting = { version = "0.3.5", features = ["jlink-quirks"] }
bit_field = "0.10.0"
heapless = "0.5.3"
[dependencies.stm32-device-signature]
version = "0.3.0"
features = ["stm32wb5x"]
[dependencies.cast]
version = "0.2.2"
default-features = false
[dependencies.void]
version = "1.0.2"
default-features = false
[dependencies.stable_deref_trait]
default-features = false
version = "1.1"
[dependencies.embedded-hal]
version = "0.2.3"
features = ["unproven"]
[dependencies.stm32-usbd]
version = "0.5.0"
features = ["ram_access_2x16"]
optional = true
[features]
xC-package = []
xE-package = []
xG-package = []
rt = ["stm32wb-pac/rt"]
default = [ "rt" ]
[dev-dependencies]
cortex-m-rtfm = "0.5"
panic-halt = "0.2.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