Init workspace
This commit is contained in:
commit
b624e7394c
7 changed files with 2984 additions and 0 deletions
3
.cargo/config.toml
Normal file
3
.cargo/config.toml
Normal file
|
@ -0,0 +1,3 @@
|
|||
[alias]
|
||||
format = "+nightly fmt"
|
||||
lint = "clippy --all-targets --all-features -- -D warnings"
|
3
.env.example
Normal file
3
.env.example
Normal file
|
@ -0,0 +1,3 @@
|
|||
#EMGAUWA_CONTROLLER__LOGGING__LEVEL=DEBUG
|
||||
|
||||
#EMGAUWA_CORE__LOGGING__LEVEL=DEBUG
|
8
.gitignore
vendored
Normal file
8
.gitignore
vendored
Normal file
|
@ -0,0 +1,8 @@
|
|||
/common
|
||||
/core
|
||||
/controller
|
||||
|
||||
/emgauwa-core.json
|
||||
/emgauwa-controller.json
|
||||
|
||||
/target
|
2943
Cargo.lock
generated
Normal file
2943
Cargo.lock
generated
Normal file
File diff suppressed because it is too large
Load diff
10
Cargo.toml
Normal file
10
Cargo.toml
Normal 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
16
Makefile
Normal 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
1
README.md
Normal file
|
@ -0,0 +1 @@
|
|||
This is a rust workspace for the emgauwa project
|
Loading…
Reference in a new issue