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