feat: Significant refactoring to introduce the HostBinding struct that has for sole purpose to bind a PhysicalHost and LogicalHost together. The PhysicalHost contains everything hardware up to the mac address, LogicalHost ip address, name and above

This commit is contained in:
jeangab
2024-09-23 00:30:27 -04:00
parent 9d0aa406e4
commit 1e1aa53eaa
22 changed files with 352 additions and 124 deletions

7
harmony-rs/README.md Normal file
View File

@@ -0,0 +1,7 @@
Due to the current setup being a mix of separate repositories with gitignore and rust workspace, a few options are required for cargo-watch to have the desired behavior :
```sh
RUST_LOG=info cargo watch --ignore-nothing -w harmony -w private_repos/ -x 'run --bin nationtech'
```
This will run the nationtech bin (likely `private_repos/nationtech/src/main.rs`) on any change in the harmony or private_repos folders.