From: MatthieuCoder Date: Mon, 16 Jan 2023 12:02:50 +0000 (+0400) Subject: add cargo config (https://github.com/rust-lang/cargo/issues/10583) X-Git-Tag: v0.1.1~2 X-Git-Url: https://git.puffer.fish/?a=commitdiff_plain;h=cceb597c4591a51c07a56b8246539f415f8e1264;p=matthieu%2Fnova.git add cargo config (https://github.com/rust-lang/cargo/issues/10583) --- diff --git a/.cargo/config.toml b/.cargo/config.toml new file mode 100644 index 0000000..656e08b --- /dev/null +++ b/.cargo/config.toml @@ -0,0 +1,2 @@ +[net] +git-fetch-with-cli = true \ No newline at end of file diff --git a/Makefile b/Makefile index a8faa42..0aa7033 100644 --- a/Makefile +++ b/Makefile @@ -5,7 +5,7 @@ endif PROJECTS = $(shell find exes/ -mindepth 1 -maxdepth 1 -type d -printf '%f\n') # Static libraries -target/release/lib%.a: +target/release/lib%.a: libs/% cargo build --release -p $* # Executables