diff options
author | Dario Nieuwenhuis <dirbaio@dirbaio.net> | 2020-10-31 23:24:31 +0100 |
---|---|---|
committer | Dario Nieuwenhuis <dirbaio@dirbaio.net> | 2020-10-31 23:24:31 +0100 |
commit | c621ed316cf6f49805a4db7b1f8e220bfc8fe86e (patch) | |
tree | 7950b43e8ea8d4de7cee8b9954807d2e2b9b0848 /Cargo.toml | |
parent | 908eb3faedfd029704b068ed92bfd2c8680798a7 (diff) | |
download | nrf-softdevice-c621ed316cf6f49805a4db7b1f8e220bfc8fe86e.zip |
Migrate to embassy (removes static-executor and async-flash)
Diffstat (limited to 'Cargo.toml')
-rw-r--r-- | Cargo.toml | 7 |
1 files changed, 3 insertions, 4 deletions
@@ -10,8 +10,6 @@ members = [ "nrf-softdevice-s140", "nrf-softdevice-macro", - "async-flash", - "examples", ] @@ -23,8 +21,9 @@ exclude = [ panic-probe = { git = "https://github.com/knurling-rs/probe-run", branch="main" } defmt-rtt = { git = "https://github.com/knurling-rs/defmt", branch="main" } defmt = { git = "https://github.com/knurling-rs/defmt", branch="main" } -static-executor = { git = "https://github.com/Dirbaio/static-executor" } -static-executor-cortex-m = { git = "https://github.com/Dirbaio/static-executor" } +embassy = { git = "https://github.com/akiles/embassy" } +embassy-nrf = { git = "https://github.com/akiles/embassy" } +embassy-macros = { git = "https://github.com/akiles/embassy" } [profile.dev] codegen-units = 1 |