Skip to content

Commit 99ae255

Browse files
committed
update libs, add byondapi_stack_trace
1 parent 213526d commit 99ae255

File tree

4 files changed

+8
-5
lines changed

4 files changed

+8
-5
lines changed

crates/byondapi-rs-test/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,6 @@ crate-type = ["cdylib"]
1010

1111
[dependencies]
1212
byondapi = { path = "../byondapi-rs" }
13-
tempfile = "3.10.1"
13+
tempfile = "3.13.0"
1414
cargo_metadata = "0.18.1"
1515
eyre = "0.6.12"

crates/byondapi-rs/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,9 @@ exclude = [".vscode/*"]
1515
[dependencies]
1616
byondapi-sys = { path = "../byondapi-sys", version = "0.11.2" }
1717
byondapi-macros = { path = "../byondapi-macros", version = "0.1.3" }
18-
libloading = "0.8.4"
18+
libloading = "0.8.5"
1919
inventory = "0.3.15"
20-
num_enum = "0.7.2"
20+
num_enum = "0.7.3"
2121

2222
[features]
2323
default = ["byond-515-1621"]

crates/byondapi-rs/src/binds.rs

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,10 @@ pub fn generate_bindings(libname: &str) {
2727
return __{libname} = \"{libname}\"
2828
2929
#define {libname_upper} (__{libname} || __detect_{libname}())
30-
30+
31+
/proc/byondapi_stack_trace(msg)
32+
CRASH(msg)
33+
3134
"
3235
))
3336
.unwrap();

crates/byondapi-sys/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ targets = [] # Do not build the doc with any other
2020
libloading = "0.8"
2121

2222
[build-dependencies]
23-
bindgen = "0.69"
23+
bindgen = "0.70"
2424
doxygen-rs = "0.4"
2525

2626
[features]

0 commit comments

Comments
 (0)