repository-structure
βββ .cargo
β βββ config.toml # <- no build.target
βββ .vscode
β βββ settings.json
βββ Cargo.toml # <- outer Cargo workspace
βββ cross
β βββ .cargo
β β βββ config.toml # <- build.target = thumbv7*-*
β βββ lib
β β βββ Cargo.toml
β β βββ src
β βββ board
β β βββ Cargo.toml
β β βββ src
β βββ Cargo.toml # <- inner Cargo workspace
β βββ self-tests
β βββ Cargo.toml
β βββ tests
βββ host-target-tests
β βββ Cargo.toml
β βββ tests
βββ control-interface
β βββ Cargo.toml
β βββ src
βββ xtask
βββ Cargo.toml
βββ src
Last updated