From 1ad7f0de2aaf992e8b4da11f3e35715a8aa65681 Mon Sep 17 00:00:00 2001 From: ZennDev1337 Date: Sun, 1 Oct 2023 11:47:23 +0200 Subject: [PATCH] added no vcs to the new lib command --- .idea/vcs.xml | 1 + README.md | 4 ++-- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/.idea/vcs.xml b/.idea/vcs.xml index 35eb1dd..015a469 100644 --- a/.idea/vcs.xml +++ b/.idea/vcs.xml @@ -2,5 +2,6 @@ + \ No newline at end of file diff --git a/README.md b/README.md index 6d2668b..6141182 100644 --- a/README.md +++ b/README.md @@ -192,7 +192,7 @@ In the root of the repo use the command: (Don't use "-" in the name because of a cargo feature that takes the "-" and mixes sometimes with a "\_". You will have some weird behavior with the run tool.) ```bash -cargo new --lib ./Project/newproject +cargo new --vcs=none --lib ./Project/newproject ``` Then open the Cargo.toml in your new project and add the following dependencies and settings: @@ -241,7 +241,7 @@ Now the last step. Go in the Cargo.toml in the root directory and add your proje ```toml [workspace] members = [ - {All other Projects...} + #{All other Projects...} "Project/newproject", ] resolver = "2"