forked from nrf-rs/nrf-hal
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
35 lines (30 loc) · 854 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
[package]
name = "nrf52811-hal"
version = "0.12.2"
edition = "2018"
description = "HAL for nRF52811 microcontrollers"
readme = "../README.md"
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", "nrf52811"]
license = "MIT OR Apache-2.0"
[dependencies]
nrf52811-pac = "0.9.1"
[dependencies.nrf-hal-common]
path = "../nrf-hal-common"
default-features = false
features = ["52811"]
version = "=0.12.2"
[dependencies.embedded-hal]
features = ["unproven"]
version = "0.2.3"
[features]
rt = ["nrf52811-pac/rt"]
default = ["rt"]