embedded-trainings-2020/common/panic-log/Cargo.toml

26 lines
452 B
TOML
Raw Normal View History

2020-06-09 09:52:27 +00:00
[package]
authors = ["Jorge Aparicio <jorge.aparicio@ferrous-systems.com>"]
edition = "2018"
2020-07-10 09:09:33 +00:00
license = "MIT OR Apache-2.0"
2020-06-09 09:52:27 +00:00
name = "panic-log"
2020-07-10 09:09:33 +00:00
version = "0.0.0"
2020-06-09 09:52:27 +00:00
[dependencies]
cortex-m = "0.6.4"
2021-04-14 10:12:02 +00:00
defmt = "0.2.1"
[features]
2021-04-14 10:14:41 +00:00
# set defmt logging levels here
2021-04-14 10:12:02 +00:00
default = [
"defmt-debug",
# "dependency-a/defmt-trace",
]
# do NOT modify these features
defmt-default = []
defmt-trace = []
defmt-debug = []
defmt-info = []
defmt-warn = []
defmt-error = []