Skip to content

Commit

Permalink
clarify, axe unused deps
Browse files Browse the repository at this point in the history
  • Loading branch information
jupyterkat committed Jun 6, 2024
1 parent 1619aa8 commit a0be78f
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 3 deletions.
2 changes: 0 additions & 2 deletions crates/byondapi-rs/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,7 @@ exclude = [".vscode/*"]
[dependencies]
byondapi-sys = { path = "../byondapi-sys", version = "0.11.1" }
byondapi-macros = { path = "../byondapi-macros", version = "0.1.2" }
lazy_static = "1.4.0"
libloading = "0.8.3"
walkdir = "2.5.0"
inventory = "0.3.15"
num_enum = "0.7.2"

Expand Down
2 changes: 1 addition & 1 deletion crates/byondapi-rs/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ This crate implements a rusty safe API for using BYONDAPI.

# WARNING

This library automatically initializes on the first function call, using lazy_static!. This initialization can fail
This library automatically initializes on the first function call, using OnceCell. This initialization can fail
in one circumstance: where the symbols needed by the BYONDAPI are not found in the current executable.

The only sane way to handle this is to panic, which will inevitably unwind across the FFI barrier, which is **undefined
Expand Down

0 comments on commit a0be78f

Please sign in to comment.