Robin Mueller
3c8c455c6f
All checks were successful
Rust/va108xx-rs/pipeline/pr-main This commit looks good
34 lines
863 B
TOML
34 lines
863 B
TOML
[package]
|
|
name = "simple-examples"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
[dependencies]
|
|
panic-halt = "0.2"
|
|
cortex-m = {version = "0.7", features = ["critical-section-single-core"]}
|
|
panic-rtt-target = "0.1"
|
|
cortex-m-rt = "0.7"
|
|
rtt-target = "0.5"
|
|
rtic-sync = { version = "1.3", features = ["defmt-03"] }
|
|
embedded-hal = "1"
|
|
embedded-hal-nb = "1"
|
|
embedded-io = "0.6"
|
|
cortex-m-semihosting = "0.5.0"
|
|
# I'd really like to use those, but it is tricky without probe-rs..
|
|
# defmt = "0.3"
|
|
# defmt-brtt = { version = "0.1", default-features = false, features = ["rtt"] }
|
|
# panic-probe = { version = "0.3", features = ["print-defmt"] }
|
|
|
|
[dependencies.rtic]
|
|
version = "2"
|
|
features = ["thumbv6-backend"]
|
|
|
|
[dependencies.rtic-monotonics]
|
|
version = "1"
|
|
features = ["cortex-m-systick"]
|
|
|
|
[dependencies.va108xx-hal]
|
|
version = "0.7"
|
|
path = "../../va108xx-hal"
|
|
features = ["rt", "defmt"]
|