Skip to content

Commit a0be78f

Browse files
committed
clarify, axe unused deps
1 parent 1619aa8 commit a0be78f

File tree

2 files changed

+1
-3
lines changed

2 files changed

+1
-3
lines changed

crates/byondapi-rs/Cargo.toml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,7 @@ exclude = [".vscode/*"]
1515
[dependencies]
1616
byondapi-sys = { path = "../byondapi-sys", version = "0.11.1" }
1717
byondapi-macros = { path = "../byondapi-macros", version = "0.1.2" }
18-
lazy_static = "1.4.0"
1918
libloading = "0.8.3"
20-
walkdir = "2.5.0"
2119
inventory = "0.3.15"
2220
num_enum = "0.7.2"
2321

crates/byondapi-rs/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ This crate implements a rusty safe API for using BYONDAPI.
44

55
# WARNING
66

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

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

0 commit comments

Comments
 (0)