diff options
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" |