forked from nrf-rs/nrf-hal
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
44 lines (38 loc) · 1007 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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
[package]
name = "nrf52810-hal"
version = "0.10.0"
edition = "2018"
description = "HAL for nRF52810 microcontrollers"
repository = "https://github.com/nrf-rs/nrf-hal"
authors = [
"James Munns <[email protected]>",
"Hanno Braun <[email protected]>",
"John Scarrott <[email protected]>",
"Wez Furlong <[email protected]>",
"Ferdia McKeogh <[email protected]>",
]
categories = ["embedded", "hardware-support", "no-std"]
keywords = ["arm", "cortex-m", "nrf52", "hal", "nrf52810"]
license = "MIT OR Apache-2.0"
[dependencies]
cortex-m = ">= 0.5.8, < 0.7"
nb = "0.1.2"
nrf52810-pac = "0.9.0"
[dependencies.void]
default-features = false
version = "1.0.2"
[dependencies.cast]
default-features = false
version = "0.2.3"
[dependencies.nrf-hal-common]
path = "../nrf-hal-common"
default-features = false
features = ["52810"]
version = "0.10.0"
[dependencies.embedded-hal]
features = ["unproven"]
version = "0.2.3"
[features]
doc = []
rt = ["nrf52810-pac/rt"]
default = ["rt"]