926fb15822
shared-hal-ci / Check build (push) Has been cancelled
shared-hal-ci / Check formatting (push) Has been cancelled
shared-hal-ci / Check Documentation Build (push) Has been cancelled
shared-hal-ci / Clippy (push) Has been cancelled
shared-hal-ci / Check build (pull_request) Has been cancelled
shared-hal-ci / Check formatting (pull_request) Has been cancelled
shared-hal-ci / Check Documentation Build (pull_request) Has been cancelled
shared-hal-ci / Clippy (pull_request) Has been cancelled
va108xx-ci / Run Tests (push) Has been cancelled
va108xx-ci / Check formatting (push) Has been cancelled
va108xx-ci / Check Documentation Build (push) Has been cancelled
va108xx-ci / Clippy (push) Has been cancelled
va108xx-ci / Run Tests (pull_request) Has been cancelled
va108xx-ci / Check formatting (pull_request) Has been cancelled
va108xx-ci / Check Documentation Build (pull_request) Has been cancelled
va108xx-ci / Clippy (pull_request) Has been cancelled
va416xx-ci / Run Tests (push) Has been cancelled
va416xx-ci / Check formatting (push) Has been cancelled
va416xx-ci / Check Documentation Build (push) Has been cancelled
va416xx-ci / Clippy (push) Has been cancelled
va416xx-ci / Run Tests (pull_request) Has been cancelled
va416xx-ci / Check formatting (pull_request) Has been cancelled
va416xx-ci / Check Documentation Build (pull_request) Has been cancelled
va416xx-ci / Clippy (pull_request) Has been cancelled
va108xx-ci / Check build (push) Has been cancelled
va108xx-ci / Check build (pull_request) Has been cancelled
va416xx-ci / Check build (push) Has been cancelled
va416xx-ci / Check build (pull_request) Has been cancelled
42 lines
1.4 KiB
TOML
42 lines
1.4 KiB
TOML
[package]
|
|
name = "flashloader"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
[dependencies]
|
|
cortex-m = { version = "0.7", features = ["critical-section-single-core"]}
|
|
cortex-m-rt = "0.7"
|
|
embedded-io = "0.7"
|
|
defmt = "1"
|
|
defmt-rtt = { version = "1" }
|
|
panic-probe = { version = "1", features = ["print-defmt"] }
|
|
num_enum = { version = "0.7", default-features = false }
|
|
cobs = { version = "0.5", default-features = false, features = ["defmt"] }
|
|
fugit = "0.4"
|
|
arbitrary-int = "2"
|
|
embassy-sync = "0.8"
|
|
embedded-io-async = "0.7"
|
|
embassy-time = { version = "0.5", features = ["defmt-timestamp-uptime-ms"] }
|
|
static_cell = "2"
|
|
postcard = { version = "1", features = ["use-defmt"] }
|
|
spacepackets = { version = "0.17", default-features = false, features = ["defmt"] }
|
|
serde = { version = "1", default-features = false }
|
|
# Even though we do not use this directly, we need to activate this feature explicitely
|
|
# so that RTIC compiles because thumv6 does not have CAS operations natively.
|
|
portable-atomic = {version = "1", features = ["unsafe-assume-single-core"]}
|
|
models = { path = "./models", features = ["defmt"] }
|
|
|
|
rtic = { version = "2", features = ["thumbv6-backend"] }
|
|
|
|
[dependencies.va108xx-hal]
|
|
version = "0.13"
|
|
path = "../va108xx-hal"
|
|
features = ["defmt", "embassy-oc30-oc31"]
|
|
|
|
[dependencies.vorago-reb1]
|
|
version = "0.10"
|
|
path = "../vorago-reb1"
|
|
|
|
[package.metadata.cargo-machete]
|
|
ignored = ["portable-atomic", "cortex-m-rt"]
|