From 9df7932169101b85ab6e211129944e8dc37758cc Mon Sep 17 00:00:00 2001 From: whitequark Date: Mon, 26 Dec 2016 17:20:21 +0000 Subject: [PATCH] firmware: add a Cargo workspace. The Rust editor plugin for Sublime Text tries to invoke cargo, which disregards our Makefile and places junk all around the source tree. This calms it down, and now it only does that where our .gitignore already handles it. --- artiq/firmware/Cargo.toml | 2 ++ 1 file changed, 2 insertions(+) create mode 100644 artiq/firmware/Cargo.toml diff --git a/artiq/firmware/Cargo.toml b/artiq/firmware/Cargo.toml new file mode 100644 index 000000000..58aec9c96 --- /dev/null +++ b/artiq/firmware/Cargo.toml @@ -0,0 +1,2 @@ +[workspace] +members = ["runtime", "libksupport"]