From 4e5a5075f42c6903f3f843e63a158c14c860ca16 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Sun, 11 Aug 2024 19:24:31 +0000 Subject: [PATCH] Update Rust crate serde_json to v1.0.123 --- Cargo.lock | 14 +++++++++----- Cargo.toml | 9 +++------ 2 files changed, 12 insertions(+), 11 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index d898d53..22048a4 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -206,7 +206,8 @@ dependencies = [ [[package]] name = "frida" version = "0.13.7" -source = "git+https://github.com/dzervas/frida-rust?branch=armhf-patches#278de57a52d3bd0b1cf3499160f519b9e254bf24" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d120fc44d01dd49c9c47eccec046c29c6d26834cda6602d401c3b8a7600bb371" dependencies = [ "frida-sys", "thiserror", @@ -215,7 +216,8 @@ dependencies = [ [[package]] name = "frida-build" version = "0.13.7" -source = "git+https://github.com/dzervas/frida-rust?branch=armhf-patches#278de57a52d3bd0b1cf3499160f519b9e254bf24" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "64e0adc856243a8980b9972cc9d589bde146e17d53e383519baf7eabbaf28d94" dependencies = [ "reqwest", "tar", @@ -225,7 +227,8 @@ dependencies = [ [[package]] name = "frida-sys" version = "0.13.7" -source = "git+https://github.com/dzervas/frida-rust?branch=armhf-patches#278de57a52d3bd0b1cf3499160f519b9e254bf24" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e84379e3ef48d69137c87059d77d9feb60e876a11816d0e2112e8033e18c1c60" dependencies = [ "bindgen", "frida-build", @@ -1000,11 +1003,12 @@ dependencies = [ [[package]] name = "serde_json" -version = "1.0.117" +version = "1.0.123" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "455182ea6142b14f93f4bc5320a2b31c1f266b66a4a5c858b013302a5d8cbfc3" +checksum = "a11b3b6ce5cfd25b9759a24c3ed4bf24e23893866863547de4655518c951bcd4" dependencies = [ "itoa", + "memchr", "ryu", "serde", ] diff --git a/Cargo.toml b/Cargo.toml index f23240c..2787e0d 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -11,21 +11,18 @@ name = "standalone" path = "src/main.rs" [features] -default = ["frida", "frida-auto-download"] +default = ["frida"] frida = ["dep:frida", "dep:lazy_static", "dep:serde", "dep:serde_json"] -frida-auto-download = ["frida/auto-download"] [dependencies] -frida = { git = "https://github.com/dzervas/frida-rust", branch = "armhf-patches", optional = true } +frida = { version = "0.13.6", features = ["auto-download"], optional = true } lazy_static = { version = "1.4.0", optional = true } serde = { version = "1.0", features = ["derive"], optional = true } serde_json = { version = "1.0", optional = true } [target.'cfg(windows)'.dependencies] winapi = { version = "0.3.9", features = ["winnt", "libloaderapi"] } -windows-sys = { version = "0.52.0", features = [ - "Win32_System_ClrHosting", -], optional = true } +windows-sys = { version = "0.52.0", features = ["Win32_System_ClrHosting"], optional = true } [target.'cfg(unix)'.dependencies] ctor = "0.2.8"