aboutsummaryrefslogtreecommitdiff
path: root/.cargo/config.toml
diff options
context:
space:
mode:
authordatdenkikniet <jcdra1@gmail.com>2023-04-15 12:21:11 +0200
committerdatdenkikniet <jcdra1@gmail.com>2023-04-15 12:33:46 +0200
commit525703358bf52b74a01d9b0c04680d33621d60cd (patch)
tree366346833e91ebfc1704525233cfb68abe3ef600 /.cargo/config.toml
parent1ccca03a70b5d11dc03c046041138f73267af22a (diff)
Rework command execution structure and make rayon optional (since it's not necessarily faster
due to workspace wide lockfile contention)
Diffstat (limited to '.cargo/config.toml')
-rw-r--r--.cargo/config.toml3
1 files changed, 2 insertions, 1 deletions
diff --git a/.cargo/config.toml b/.cargo/config.toml
index d70faef..0a62466 100644
--- a/.cargo/config.toml
+++ b/.cargo/config.toml
@@ -1,5 +1,6 @@
[alias]
xtask = "run --package xtask --"
+pxtask = "run --package xtask --features rayon --"
[target.thumbv6m-none-eabi]
runner = "qemu-system-arm -cpu cortex-m3 -machine lm3s6965evb -nographic -semihosting-config enable=on,target=native -kernel"
@@ -10,4 +11,4 @@ runner = "qemu-system-arm -cpu cortex-m3 -machine lm3s6965evb -nographic -semiho
[target.'cfg(all(target_arch = "arm", target_os = "none"))']
rustflags = [
"-C", "link-arg=-Tlink.x",
-] \ No newline at end of file
+]