Skip to content

Commit 238b36d

Browse files
authored
Bump frida to 17.2.12 (#211)
* Bump frida to 17.2.12 * Don't link stdc++ when targeting windows, even from linux * clippy * format
1 parent 8a7cc20 commit 238b36d

File tree

12 files changed

+14
-15
lines changed

12 files changed

+14
-15
lines changed

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ members = [
1313
default-members = ["frida-gum-sys", "frida-gum", "frida-sys", "frida"]
1414

1515
[workspace.package]
16-
version = "0.16.10"
16+
version = "0.17.0"
1717
authors = [
1818
"Keegan Saunders <[email protected]>",
1919
"Shmarya Rubenstein <[email protected]>",

FRIDA_VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
16.7.18
1+
17.2.12

frida-gum-sys/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ js = []
1919
[build-dependencies]
2020
bindgen = "0.71.1"
2121
cc = { version = "1", optional = true }
22-
frida-build = { path = "../frida-build", optional = true, version = "0.16.10" }
22+
frida-build = { path = "../frida-build", optional = true, version = "0.17.0" }
2323

2424
[badges]
2525
maintenance = { status = "experimental" }

frida-gum-sys/FRIDA_VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
16.7.18
1+
17.2.12

frida-gum-sys/build.rs

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -240,7 +240,9 @@ fn main() {
240240

241241
/* GUMJS contains v8 for some architectures, thus it needs to link stdc++ */
242242
#[cfg(all(feature = "js", target_os = "linux"))]
243-
println!("cargo:rustc-link-lib=dylib=stdc++");
243+
if target_os != "windows" {
244+
println!("cargo:rustc-link-lib=dylib=stdc++");
245+
}
244246

245247
#[cfg(all(feature = "js", target_os = "android"))]
246248
println!("cargo:rustc-link-lib=c++");

frida-gum/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ std = []
2323
cstr_core = { version = "0.2.6", default-features = false, features = [
2424
"alloc",
2525
] }
26-
frida-gum-sys = { path = "../frida-gum-sys", version = "0.16.10" }
26+
frida-gum-sys = { path = "../frida-gum-sys", version = "0.17.0" }
2727
libc = { version = "0.2.172", default-features = false, optional = true }
2828
num = { version = "0.4.3", default-features = false }
2929
num-derive = { version = "0.4.2", default-features = false }

frida-gum/src/range_details.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -192,7 +192,7 @@ impl<'a> RangeDetails<'a> {
192192
}
193193

194194
/// The associated file mapping, if present.
195-
pub fn file_mapping(&self) -> Option<FileMapping> {
195+
pub fn file_mapping(&self) -> Option<FileMapping<'_>> {
196196
self.file.clone()
197197
}
198198
}

frida-sys/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ auto-download = ["frida-build"]
1212

1313
[build-dependencies]
1414
bindgen = "0.71.1"
15-
frida-build = { path = "../frida-build", optional = true, version = "0.16.10" }
15+
frida-build = { path = "../frida-build", optional = true, version = "0.17.0" }
1616

1717
[badges]
1818
maintenance = { status = "experimental" }

frida-sys/FRIDA_VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
16.7.18
1+
17.2.12

frida/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ description.workspace = true
1111
auto-download = ["frida-sys/auto-download"]
1212

1313
[dependencies]
14-
frida-sys = { path = "../frida-sys", version = "0.16.10" }
14+
frida-sys = { path = "../frida-sys", version = "0.17.0" }
1515
thiserror = "2"
1616
serde = { version = "1.0", features = ["derive"] }
1717
serde_json = "1.0.140"

0 commit comments

Comments
 (0)