Init workspace

This commit is contained in:
Tobias Reisinger 2024-04-30 09:36:32 +02:00
commit b624e7394c
Signed by: serguzim
GPG key ID: 13AD60C237A28DFE
7 changed files with 2984 additions and 0 deletions

3
.cargo/config.toml Normal file
View file

@ -0,0 +1,3 @@
[alias]
format = "+nightly fmt"
lint = "clippy --all-targets --all-features -- -D warnings"

3
.env.example Normal file
View file

@ -0,0 +1,3 @@
#EMGAUWA_CONTROLLER__LOGGING__LEVEL=DEBUG
#EMGAUWA_CORE__LOGGING__LEVEL=DEBUG

8
.gitignore vendored Normal file
View file

@ -0,0 +1,8 @@
/common
/core
/controller
/emgauwa-core.json
/emgauwa-controller.json
/target

2943
Cargo.lock generated Normal file

File diff suppressed because it is too large Load diff

10
Cargo.toml Normal file
View file

@ -0,0 +1,10 @@
[workspace]
resolver = "2"
members = [
"core",
"controller",
"common",
]
[patch.'https://git.serguzim.me/emgauwa/common.git']
emgauwa-common = { path = "./common" }

16
Makefile Normal file
View file

@ -0,0 +1,16 @@
configs:
$(MAKE) -C core config
ln -s core/emgauwa-core.json emgauwa-core.json
$(MAKE) -C controller config
ln -s controller/emgauwa-controller.json emgauwa-controller.json
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 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

1
README.md Normal file
View file

@ -0,0 +1 @@
This is a rust workspace for the emgauwa project