From e803b57a558e88fef1b6c101b99b3983d5af5235 Mon Sep 17 00:00:00 2001 From: Tyler Barker Date: Tue, 24 Dec 2024 00:50:29 +1100 Subject: [PATCH] create cargo workspace for better IDE reliability --- .gitignore | 4 ++++ Cargo.toml | 4 ++++ 2 files changed, 8 insertions(+) create mode 100644 Cargo.toml diff --git a/.gitignore b/.gitignore index 4fe0398..0758167 100644 --- a/.gitignore +++ b/.gitignore @@ -3,6 +3,10 @@ *.local *.log* +# Rust +Cargo.lock +target/ + # Dist node_modules dist/ diff --git a/Cargo.toml b/Cargo.toml new file mode 100644 index 0000000..d14b3c3 --- /dev/null +++ b/Cargo.toml @@ -0,0 +1,4 @@ +[workspace] + +resolver = "2" +members = ["acrate"]