Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
247 changes: 245 additions & 2 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 4 additions & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,10 @@ once_cell = "1.21.3"
paste = "1.0.15"
parse_int = "0.6"
rand = "0.8.5"
rhai-chrono = { version = "^0" }
rhai-env = "0.1.2"
rhai-fs = { version = "0.1.3", features = ["metadata"] }
rhai = { version = "1.21.0", features = ["serde", "metadata", "debugging"]}
serde = { version = "1.0", default-features = false, features = ["derive"] }
serde-big-array = "0.5.1"
serde_bytes = "0.11.17"
Expand Down
10 changes: 10 additions & 0 deletions check_this.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
#!/bin/bash

./target/debug/faux-mgs --interface eno1 start-host-flash-hash 0
while true; do
./target/debug/faux-mgs --interface eno1 get-host-flash-hash 0
if [ $? -eq 0 ]; then
exit 0
fi
sleep 1
done
4 changes: 4 additions & 0 deletions faux-mgs/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,10 @@ hex.workspace = true
humantime.workspace = true
nix.workspace = true
rand.workspace = true
rhai-chrono.workspace = true
rhai-env.workspace = true
rhai-fs.workspace = true
rhai.workspace = true
parse_int.workspace = true
serde.workspace = true
serde_json.workspace = true
Expand Down
Loading
Loading