Skip to content

Commit

Permalink
feat(Lua): add event scripting via Lua
Browse files Browse the repository at this point in the history
  • Loading branch information
ShadowApex committed Nov 27, 2024
1 parent 3eff7f4 commit 829aad2
Show file tree
Hide file tree
Showing 10 changed files with 842 additions and 37 deletions.
145 changes: 139 additions & 6 deletions Cargo.lock

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

9 changes: 8 additions & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -39,9 +39,16 @@ log = { version = "0.4.22", features = [
"release_max_level_debug",
] }
mio = { version = "0.8.11", features = ["os-poll", "os-ext", "net"] }
mlua = { version = "0.10.1", features = [
"lua54",
"vendored",
"async",
"send",
"serialize",
] }
nix = { version = "0.29.0", features = ["fs"] }
packed_struct = "0.10.1"
procfs = "0.16.0"
procfs = { version = "0.17.0", features = ["serde1"] }
rand = "0.8.5"
serde = { version = "1.0.204", features = ["derive"] }
serde_yaml = "0.9.34"
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM rust:1.78
FROM rust:1.82

RUN apt-get update && apt-get install -y \
zstd \
Expand Down
Loading

0 comments on commit 829aad2

Please sign in to comment.