-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
47 lines (40 loc) · 1.27 KB
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
[package]
name = "imxrt-uart-panic"
authors = ["Finomnis <[email protected]>"]
version = "0.2.0"
rust-version = "1.68"
edition = "2021"
license = "MIT OR Apache-2.0"
readme = "README.md"
repository = "https://github.com/imxrt-rs/imxrt-uart-panic"
description = "Panic handler for i.MX RT that reports to UART."
keywords = ["imxrt", "embedded", "panic"]
categories = ["embedded", "no-std"]
exclude = ["/.gitignore", "/.github/", "/.vscode/"]
[features]
default = []
# Do not use; internally required for Github CI
_ci = ["imxrt-ral/imxrt1062"]
[dependencies]
imxrt-hal = { version = "0.5.5", default-features = false }
imxrt-ral = "0.5.3"
cortex-m = "0.7.7"
embedded-io = "0.6.1"
# Fix for min-versions.
# TODO: remove once unnecessary.
ral-registers = "0.1.2"
eh-old = { package = "embedded-hal", version = "0.2.6" }
bitflags-old = { package = "bitflags", version = "1.3" }
[dev-dependencies]
teensy4-bsp = { version = "0.5.0", features = ["rt"] }
teensy4-panic = { version = "0.2.3", default-features = false }
rtic = { version = "2.1.1", features = ["thumbv7-backend"] }
imxrt-log = { version = "0.1.1", default-features = false, features = [
"log",
"lpuart",
] }
log = "0.4.20"
# Allow docsrs options
[package.metadata.docs.rs]
all-features = true
rustdoc-args = ["--cfg", "docsrs"]