-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Use a fork of bindgen, which allows us to - Add feature cfgs onto items based on doc comments - Add deprecated onto items based on doc comments Signed-off-by: Jonathan Schwender <[email protected]> Add feature cfgs and deprecated annotations Signed-off-by: Jonathan Schwender <[email protected]>
- Loading branch information
Showing
70 changed files
with
3,262 additions
and
6,202 deletions.
There are no files selected for viewing
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 |
---|---|---|
@@ -0,0 +1,3 @@ | ||
# unstable_features = true | ||
# normalize_comments = true | ||
# normalize_doc_attributes = true |
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 |
---|---|---|
@@ -1,3 +1,9 @@ | ||
# v0.5.0 | ||
|
||
## Breaking | ||
|
||
- Remove `Debug` from opaque structs | ||
|
||
# v0.4.0 (2024-10-29) | ||
|
||
## Change | ||
|
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 |
---|---|---|
@@ -0,0 +1,6 @@ | ||
## 0.2.0 | ||
|
||
### Breaking | ||
|
||
- `ArkUI_NumberValue` is now a native Rust union instead of a bindgen union type. | ||
|
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 |
---|---|---|
@@ -1,2 +1,2 @@ | ||
mod native_gesture_api12; | ||
pub use native_gesture_api12::*; | ||
mod native_gesture_ffi; | ||
pub use native_gesture_ffi::*; |
96 changes: 95 additions & 1 deletion
96
...rc/native_gesture/native_gesture_api12.rs → .../src/native_gesture/native_gesture_ffi.rs
Large diffs are not rendered by default.
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 |
---|---|---|
@@ -1,2 +1,2 @@ | ||
mod native_type_api12; | ||
pub use native_type_api12::*; | ||
mod native_type_ffi; | ||
pub use native_type_ffi::*; |
Oops, something went wrong.