[package] name = "nrf52840_dongle_dfu" version = "0.1.0" authors = ["Tock Project Developers "] build = "build.rs" edition = "2018" [profile.dev] panic = "abort" lto = false opt-level = "z" debug = true [profile.release] panic = "abort" lto = true opt-level = "z" debug = true [[bin]] path = "../../third_party/tock/boards/nordic/nrf52840_dongle/src/main.rs" name = "nrf52840_dongle_dfu" [dependencies] components = { path = "../../third_party/tock/boards/components" } cortexm4 = { path = "../../third_party/tock/arch/cortex-m4" } capsules = { path = "../../third_party/tock/capsules" } kernel = { path = "../../third_party/tock/kernel" } nrf52840 = { path = "../../third_party/tock/chips/nrf52840" } nrf52dk_base = { path = "../../third_party/tock/boards/nordic/nrf52dk_base" }