Skip to content

Commit

Permalink
Frida 16.1.7
Browse files Browse the repository at this point in the history
  • Loading branch information
s1341 authored Dec 7, 2023
1 parent a31c6eb commit bab08b2
Show file tree
Hide file tree
Showing 7 changed files with 11 additions and 7 deletions.
2 changes: 1 addition & 1 deletion FRIDA_VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
16.0.19
16.1.7
2 changes: 1 addition & 1 deletion frida-gum-sys/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ stalker-observer = ["cc"]
stalker-params = ["cc"]

[build-dependencies]
bindgen = "0.63"
bindgen = "0.69.1"
cc = { version = "1.0", optional = true }
frida-build = { path = "../frida-build", version = "0.2.1", optional = true }

Expand Down
2 changes: 1 addition & 1 deletion frida-gum-sys/FRIDA_VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
16.0.19
16.1.7
6 changes: 5 additions & 1 deletion frida-gum-sys/build.rs
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,11 @@ fn main() {
.header("probe_listener.h")
.header("stalker_observer.h")
.header("stalker_params.h")
.parse_callbacks(Box::new(bindgen::CargoCallbacks))
.parse_callbacks(Box::new(bindgen::CargoCallbacks::new()))
.blocklist_type("GumChainedPtr64Rebase")
.blocklist_type("GumChainedPtrArm64eRebase")
.blocklist_type("_GumChainedPtr64Rebase")
.blocklist_type("_GumChainedPtrArm64eRebase")
.generate_comments(false)
.layout_tests(false)
.generate()
Expand Down
2 changes: 1 addition & 1 deletion frida-sys/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ description = "Rust generated bindings for Frida"
auto-download = ["frida-build"]

[build-dependencies]
bindgen = "0.63"
bindgen = "0.69.1"
frida-build = { path = "../frida-build", version = "0.2.1", optional = true }

[badges]
Expand Down
2 changes: 1 addition & 1 deletion frida-sys/FRIDA_VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
16.0.19
16.1.7
2 changes: 1 addition & 1 deletion frida-sys/build.rs
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ fn main() {

let bindings = bindings
.header_contents("core.h", "#include \"frida-core.h\"")
.parse_callbacks(Box::new(bindgen::CargoCallbacks))
.parse_callbacks(Box::new(bindgen::CargoCallbacks::new()))
.generate_comments(false)
.layout_tests(false)
.generate()
Expand Down

0 comments on commit bab08b2

Please sign in to comment.