forked from nrf-rs/nrf-hal
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
37 lines (31 loc) · 864 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
[package]
name = "nrf52833-hal"
version = "0.13.0"
description = "HAL for nRF52833 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]>",
"Erik Svensson <[email protected]>"
]
categories = ["embedded", "hardware-support", "no-std"]
keywords = ["arm", "cortex-m", "nrf52", "hal", "nrf52833"]
license = "MIT OR Apache-2.0"
edition = "2018"
[dependencies]
nrf52833-pac = "0.9.0"
[dependencies.nrf-hal-common]
path = "../nrf-hal-common"
default-features = false
features = ["52833"]
version = "=0.13.0"
[dependencies.embedded-hal]
features = ["unproven"]
version = "0.2.3"
[features]
doc = []
rt = ["nrf52833-pac/rt"]
default = ["rt"]