Skip to content

Commit

Permalink
Update cargo metadata to indicate no_std
Browse files Browse the repository at this point in the history
  • Loading branch information
trueb2 committed May 29, 2022
1 parent c54ae3a commit 85413b4
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
5 changes: 3 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"]
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -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

Expand Down

0 comments on commit 85413b4

Please sign in to comment.