diff options
author | Dario Nieuwenhuis <dirbaio@dirbaio.net> | 2020-11-24 21:22:29 +0100 |
---|---|---|
committer | Dario Nieuwenhuis <dirbaio@dirbaio.net> | 2020-11-24 21:30:25 +0100 |
commit | 5231fd670327bdae54643ba88548788c535848b1 (patch) | |
tree | d1e2cd0549f1b665df78a9d5ed1132b4296d281b /nrf-softdevice-defmt-rtt/Cargo.toml | |
parent | 8f913fc1e795d3fd0566f4cac890db37f74d5866 (diff) | |
download | nrf-softdevice-5231fd670327bdae54643ba88548788c535848b1.zip |
Update to defmt panic/assert/unwrap macros
Diffstat (limited to 'nrf-softdevice-defmt-rtt/Cargo.toml')
-rw-r--r-- | nrf-softdevice-defmt-rtt/Cargo.toml | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/nrf-softdevice-defmt-rtt/Cargo.toml b/nrf-softdevice-defmt-rtt/Cargo.toml new file mode 100644 index 0000000..1871db2 --- /dev/null +++ b/nrf-softdevice-defmt-rtt/Cargo.toml @@ -0,0 +1,16 @@ +[package] +authors = ["The Knurling-rs developers"] +categories = ["embedded", "no-std"] +description = "Transmit defmt log messages over the RTT (Real-Time Transfer) protocol" +edition = "2018" +keywords = ["knurling", "defmt", "defmt-transport"] +license = "MIT OR Apache-2.0" +name = "nrf-softdevice-defmt-rtt" +readme = "README.md" +repository = "https://github.com/knurling-rs/defmt" +version = "0.1.0" + +[dependencies] +defmt = { version = "0.1.0" } +nrf-softdevice = { path = "../nrf-softdevice", version = "0.1.0" } +cortex-m = "0.6.4" |