From 5c24489652aa8599ef9c2ac60fa14d866405c78c Mon Sep 17 00:00:00 2001 From: Thanasis Tserpelis Date: Thu, 30 Sep 2021 21:03:28 +0300 Subject: [PATCH] Update README.md --- README.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 797d691..accfd0e 100644 --- a/README.md +++ b/README.md @@ -71,9 +71,9 @@ For creating a project, execute: `cargo new ` This will automatically create the structured project folders with: -`project` -`-------->Cargo.toml` -`-------->src-------->main.rs` +`project +-------->Cargo.toml +-------->src-------->main.rs` Cargo.toml is the file that contains the dependencies and the configuration for the compilation. main.rs is the main file that will be compiled along with any potential directories that contain libraries. @@ -86,7 +86,7 @@ If you want to build the final "release" version execute: `cargo build --release` For static binaries, in terminal before the build command execute: -`"C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Auxiliary\Build\vcvars64.bat"` +`"C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Auxiliary\Build\vcvars64.bat"` `set RUSTFLAGS=-C target-feature=+crt-static`