diff --git a/Cargo.toml b/Cargo.toml index 5b52385..d128115 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -2,10 +2,11 @@ name = "logz" description = "Zephyr RTOS logging implementation" repository = "https://github.com/trueb2/logz" -version = "0.1.1" +version = "0.1.2" edition = "2021" license = "MIT OR Apache-2.0" -keywords = ["log", "zephyr", "nrf52", "nrf53"] +keywords = ["log", "zephyr", "nrf", "bidnings", "ffi"] +categories = ["no-std"] [lib] crate-type = ["rlib"] diff --git a/README.md b/README.md index 40b5835..fd75c55 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ # LOGZ -This repo provides a crate with a Rust Logger implementation for use on an embedded device with Zephyr RTOS. `bindgen` and `cbindgen` are used to bind Rust calls to Zephyr RTOS's log2 implementation +This repo provides a crate with a Rust Logger implementation for use on an embedded device with Zephyr RTOS. `bindgen` and `cbindgen` are used to bind Rust calls to Zephyr RTOS's log2 implementation. Since this crate is targetting NRF52 and NRF53 deployments, it is `no_std` and does not allocate. ## Build