scratch repo for intrusive networking
at main 667 B view raw
1#!/usr/bin/env bash 2 3set -euxo pipefail 4 5# Format crates 6cargo fmt --manifest-path=./crates/ergot/Cargo.toml 7cargo fmt --manifest-path=./crates/cobs-acc/Cargo.toml 8 9# Format all the demo workspaces 10cargo fmt --manifest-path=./demos/shared-icd/Cargo.toml 11cargo fmt --all --manifest-path=./demos/std/Cargo.toml 12cargo fmt --all --manifest-path=./demos/microbit/Cargo.toml 13cargo fmt --all --manifest-path=./demos/nrf52840/Cargo.toml 14cargo fmt --all --manifest-path=./demos/rp2040/Cargo.toml 15cargo fmt --all --manifest-path=./demos/rp2350/Cargo.toml 16cargo fmt --all --manifest-path=./demos/esp32c6/Cargo.toml 17cargo fmt --all --manifest-path=./demos/stm32f303vc/Cargo.toml