Move nRF's util into a separate crate

This commit is contained in:
Thales Fragoso
2021-03-07 20:15:40 -03:00
parent f922cf1609
commit 15c3e78408
12 changed files with 157 additions and 13 deletions

19
embassy-extras/Cargo.toml Normal file
View File

@ -0,0 +1,19 @@
[package]
name = "embassy-extras"
version = "0.1.0"
authors = ["Dario Nieuwenhuis <dirbaio@dirbaio.net>"]
edition = "2018"
[features]
defmt-trace = [ ]
defmt-debug = [ ]
defmt-info = [ ]
defmt-warn = [ ]
defmt-error = [ ]
[dependencies]
embassy = { version = "0.1.0", path = "../embassy" }
defmt = { version = "0.2.0", optional = true }
log = { version = "0.4.11", optional = true }
cortex-m = "0.7.1"