File tree Expand file tree Collapse file tree 2 files changed +1
-3
lines changed Expand file tree Collapse file tree 2 files changed +1
-3
lines changed Original file line number Diff line number Diff line change @@ -15,9 +15,7 @@ exclude = [".vscode/*"]
15
15
[dependencies ]
16
16
byondapi-sys = { path = " ../byondapi-sys" , version = " 0.11.1" }
17
17
byondapi-macros = { path = " ../byondapi-macros" , version = " 0.1.2" }
18
- lazy_static = " 1.4.0"
19
18
libloading = " 0.8.3"
20
- walkdir = " 2.5.0"
21
19
inventory = " 0.3.15"
22
20
num_enum = " 0.7.2"
23
21
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ This crate implements a rusty safe API for using BYONDAPI.
4
4
5
5
# WARNING
6
6
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
8
8
in one circumstance: where the symbols needed by the BYONDAPI are not found in the current executable.
9
9
10
10
The only sane way to handle this is to panic, which will inevitably unwind across the FFI barrier, which is ** undefined
You can’t perform that action at this time.
0 commit comments