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

26 lines
409 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]
2022-12-06 17:14:36 +00:00
cortex-m = "0.7.6"
defmt = "0.3.2"
2021-04-14 10:12:02 +00:00
[features]
2022-12-06 17:14:36 +00:00
2021-04-14 10:12:02 +00:00
default = [
2022-12-06 17:14:36 +00:00
"other-feature"
2021-04-14 10:12:02 +00:00
]
2022-12-06 17:14:36 +00:00
other-feature = []
2021-04-14 10:12:02 +00:00
# do NOT modify these features
defmt-default = []
defmt-trace = []
defmt-debug = []
defmt-info = []
defmt-warn = []
defmt-error = []