Skip to content

Commit

Permalink
update some packages
Browse files Browse the repository at this point in the history
  • Loading branch information
bgkillas committed Feb 8, 2025
1 parent 0e4338e commit fe854e1
Show file tree
Hide file tree
Showing 10 changed files with 204 additions and 139 deletions.
67 changes: 53 additions & 14 deletions ewext/Cargo.lock

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

2 changes: 1 addition & 1 deletion ewext/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ eyre = "0.6.12"
noita_api = {path = "noita_api"}
shared = {path = "../shared"}
libloading = "0.8.6"
rand = "0.8.5"
rand = "0.9.0"
rustc-hash = "2.0.0"
bimap = "0.6.3"

Expand Down
1 change: 0 additions & 1 deletion ewext/noita_api/Cargo.lock

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

1 change: 0 additions & 1 deletion ewext/noita_api/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,5 +8,4 @@ eyre = "0.6.12"
libloading = "0.8.5"
noita_api_macro = {path = "../noita_api_macro"}
shared = {path = "../../shared"}
strum = "0.26.3"
base64 = "0.22.1"
2 changes: 1 addition & 1 deletion ewext/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -250,7 +250,7 @@ fn netmanager_send(lua: LuaState) -> eyre::Result<()> {
let arg = lua.to_raw_string(1)?;
let mut binding = try_lock_netmanager()?;
let netmanager = binding.as_mut().unwrap();
netmanager.send(&shared::NoitaOutbound::Raw(arg))?;
netmanager.send(&NoitaOutbound::Raw(arg))?;

Ok(())
}
Expand Down
Loading

0 comments on commit fe854e1

Please sign in to comment.