From 1c4ffa19a600235b16f9d470b14d38c30db05527 Mon Sep 17 00:00:00 2001 From: cscherr Date: Wed, 16 Jul 2025 12:14:59 +0200 Subject: [PATCH] chore: adjust config.toml --- .cargo/config.toml | 12 +----------- 1 file changed, 1 insertion(+), 11 deletions(-) diff --git a/.cargo/config.toml b/.cargo/config.toml index 75ed16a..998b1b5 100755 --- a/.cargo/config.toml +++ b/.cargo/config.toml @@ -4,21 +4,11 @@ runner = 'probe-rs run --chip STM32L053R8' [build] target = "thumbv6m-none-eabi" -[run] -target = "thumbv6m-none-eabi" - -[check] -target = "thumbv6m-none-eabi" - -[clippy] -target = "thumbv6m-none-eabi" - -[test] - [alias] arun = "run --target thumbv6m-none-eabi" abuild = "build --target thumbv6m-none-eabi" atest = "test --target x86_64-unknown-linux-gnu" +abench = "bench --target x86_64-unknown-linux-gnu" acheck = "check --target thumbv6m-none-eabi" aclippy = "clippy --target thumbv6m-none-eabi" cflash = "flash --chip STM32L053R8"