-
Notifications
You must be signed in to change notification settings - Fork 43
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #239 from getditto/dhm/niche-for-box-dyn-fn-and-fns
Make `repr_c::Box<dyn FnMut…>` and by extension `fn` pointers, `Option`able
- Loading branch information
Showing
7 changed files
with
84 additions
and
88 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.12" # Keep in sync | ||
version = "0.1.13" # Keep in sync | ||
authors = ["Daniel Henry-Mantilla <[email protected]>"] | ||
edition = "2021" | ||
rust-version = "1.72.1" | ||
|
@@ -90,6 +90,8 @@ serde_test = { version = "1.0.177" } | |
async-compat.optional = true | ||
async-compat.version = "0.2.1" | ||
|
||
extern-c.version = "0.1.0" | ||
|
||
futures.optional = true | ||
futures.version = "0.3.24" | ||
|
||
|
@@ -141,7 +143,7 @@ version = "0.0.3" | |
|
||
[dependencies.safer_ffi-proc_macros] | ||
path = "src/proc_macro" | ||
version = "=0.1.12" # Keep in sync | ||
version = "=0.1.13" # 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
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.12" # Keep in sync | ||
version = "0.1.13" # Keep in sync | ||
authors = ["Daniel Henry-Mantilla <[email protected]>"] | ||
edition = "2021" | ||
|
||
|