Improve workspace
This commit is contained in:
parent
1cf9ad4904
commit
c3659a96b9
5 changed files with 11 additions and 2958 deletions
|
@ -1,3 +1,6 @@
|
|||
[alias]
|
||||
format = "+nightly fmt"
|
||||
lint = "clippy --all-targets --all-features -- -D warnings"
|
||||
|
||||
[patch.'https://git.serguzim.me/emgauwa/common.git']
|
||||
emgauwa-common = { path = "./common" }
|
||||
|
|
|
@ -1,3 +0,0 @@
|
|||
#EMGAUWA_CONTROLLER__LOGGING__LEVEL=DEBUG
|
||||
|
||||
#EMGAUWA_CORE__LOGGING__LEVEL=DEBUG
|
2943
Cargo.lock
generated
2943
Cargo.lock
generated
File diff suppressed because it is too large
Load diff
10
Cargo.toml
10
Cargo.toml
|
@ -1,10 +0,0 @@
|
|||
[workspace]
|
||||
resolver = "2"
|
||||
members = [
|
||||
"core",
|
||||
"controller",
|
||||
"common",
|
||||
]
|
||||
|
||||
[patch.'https://git.serguzim.me/emgauwa/common.git']
|
||||
emgauwa-common = { path = "./common" }
|
10
Makefile
10
Makefile
|
@ -4,16 +4,22 @@ configs:
|
|||
$(MAKE) -C controller config
|
||||
ln -s controller/emgauwa-controller.json emgauwa-controller.json
|
||||
|
||||
clone-http:
|
||||
git-clone-http:
|
||||
git clone https://git.serguzim.me/emgauwa/common.git
|
||||
git clone https://git.serguzim.me/emgauwa/core.git
|
||||
git clone https://git.serguzim.me/emgauwa/controller.git
|
||||
|
||||
clone-ssh:
|
||||
git-clone-ssh:
|
||||
git clone git@git.serguzim.me:emgauwa/common.git
|
||||
git clone git@git.serguzim.me:emgauwa/core.git
|
||||
git clone git@git.serguzim.me:emgauwa/controller.git
|
||||
|
||||
git-status:
|
||||
@printf "===== COMMON =====\n" && cd common && git status
|
||||
@printf "\n\n===== CORE =====\n" && cd core && git status
|
||||
@printf "\n\n===== CONTROLLER =====\n" && cd controller && git status
|
||||
|
||||
|
||||
emgauwa-core_%:
|
||||
$(TOOL) build --target $* --release
|
||||
mkdir -p out/releases
|
||||
|
|
Loading…
Reference in a new issue