Skip to content

Commit 5fde95b

Browse files
committed
Fix build after #422.
1 parent 2db1606 commit 5fde95b

2 files changed

Lines changed: 5 additions & 12 deletions

File tree

nrf52805-hal/Cargo.toml

Lines changed: 4 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "nrf52805-hal"
3-
version = "0.16.0"
3+
version = "0.17.1"
44
edition = "2018"
55
description = "HAL for nRF52805 microcontrollers"
66
readme = "../README.md"
@@ -24,13 +24,10 @@ nrf52805-pac = "0.12.2"
2424
path = "../nrf-hal-common"
2525
default-features = false
2626
features = ["52805"]
27-
version = "=0.16.0"
28-
29-
[dependencies.embedded-hal]
30-
features = ["unproven"]
31-
version = "0.2.3"
27+
version = "=0.17.1"
3228

3329
[features]
3430
doc = []
31+
embedded-hal-02 = ["nrf-hal-common/embedded-hal-02"]
3532
rt = ["nrf52805-pac/rt"]
36-
default = ["rt"]
33+
default = ["rt", "embedded-hal-02"]

nrf52805-hal/src/lib.rs

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,10 @@
11
#![no_std]
2-
#![doc(html_root_url = "https://docs.rs/nrf52805-hal/0.16.0")]
2+
#![doc(html_root_url = "https://docs.rs/nrf52805-hal/0.17.1")]
33

4-
use embedded_hal as hal;
54
pub use nrf_hal_common::*;
65

76
pub mod prelude {
8-
pub use crate::hal::prelude::*;
97
pub use nrf_hal_common::prelude::*;
10-
11-
pub use crate::time::U32Ext;
128
}
139

1410
pub use crate::ccm::Ccm;

0 commit comments

Comments
 (0)