20 lines
461 B
TOML
20 lines
461 B
TOML
[package]
|
|
name = "defmt-ringbuf"
|
|
description = "defmt persistent ring buffer logger"
|
|
authors = ["Sebastian Urban <surban@surban.net>"]
|
|
categories = ["embedded", "no-std"]
|
|
keywords = ["defmt", "defmt-transport"]
|
|
readme = "README.md"
|
|
repository = "https://github.com/surban/openemc"
|
|
license = "MIT OR Apache-2.0"
|
|
version = "0.2.0"
|
|
edition = "2021"
|
|
|
|
[features]
|
|
default = ["logger"]
|
|
logger = []
|
|
|
|
[dependencies]
|
|
defmt = "0.3"
|
|
critical-section = "1"
|
|
cortex-m = "0.7"
|