-
Notifications
You must be signed in to change notification settings - Fork 42
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
v0.1.6 | Fix
dyn_spawn_blocking()
panicking for cancelled tasks & n…
…its (#209) * Fix `dyn_spawn_blocking` panicking for cancelled tasks * Remove the unused `withOutPtr` js helper * Add `refCBytesIntoBuffer()` js helper * Explain the exact choice of `{MIN,MAX}_SAFE_INTEGER` in js N-API conversions * Version 0.1.6
- Loading branch information
1 parent
370f8b0
commit b459554
Showing
8 changed files
with
57 additions
and
35 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,7 +3,7 @@ path = "src/_lib.rs" | |
|
||
[package] | ||
name = "safer-ffi" | ||
version = "0.1.5" # Keep in sync | ||
version = "0.1.6" # Keep in sync | ||
authors = [ | ||
"Daniel Henry-Mantilla <[email protected]>", | ||
] | ||
|
@@ -164,7 +164,7 @@ version = "0.0.3" | |
|
||
[dependencies.safer_ffi-proc_macros] | ||
path = "src/proc_macro" | ||
version = "=0.1.5" # Keep in sync | ||
version = "=0.1.6" # Keep in sync | ||
|
||
[workspace] | ||
members = [ | ||
|
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,7 +4,7 @@ proc-macro = true | |
|
||
[package] | ||
name = "safer_ffi-proc_macros" | ||
version = "0.1.5" # Keep in sync | ||
version = "0.1.6" # Keep in sync | ||
authors = ["Daniel Henry-Mantilla <[email protected]>"] | ||
edition = "2021" | ||
|
||
|