From 3feda38cc3f27d236423cb3b4dd11bce87cb0c23 Mon Sep 17 00:00:00 2001 From: cli Date: Wed, 18 Dec 2024 08:34:31 +0100 Subject: [PATCH] core: bump deps + update README.md (#78) --- README.md | 1 + adb_cli/Cargo.toml | 6 +++--- adb_client/Cargo.toml | 10 +++++----- adb_client/README.md | 2 +- 4 files changed, 10 insertions(+), 9 deletions(-) diff --git a/README.md b/README.md index ad91ca7..51dce07 100644 --- a/README.md +++ b/README.md @@ -48,5 +48,6 @@ Improved documentation available [here](./adb_cli/README.md). ## Related publications - [Diving into ADB protocol internals (1/2)](https://www.synacktiv.com/publications/diving-into-adb-protocol-internals-12) +- [Diving into ADB protocol internals (2/2)](https://www.synacktiv.com/publications/diving-into-adb-protocol-internals-22) Some features may still be missing, all pull requests are welcome ! diff --git a/adb_cli/Cargo.toml b/adb_cli/Cargo.toml index 45de282..48ad188 100644 --- a/adb_cli/Cargo.toml +++ b/adb_cli/Cargo.toml @@ -10,9 +10,9 @@ repository.workspace = true version.workspace = true [dependencies] -adb_client = { version = "2.0.5" } -anyhow = { version = "1.0.89" } -clap = { version = "4.5.18", features = ["derive"] } +adb_client = { version = "2.0.6" } +anyhow = { version = "1.0.94" } +clap = { version = "4.5.23", features = ["derive"] } env_logger = { version = "0.11.5" } log = { version = "0.4.22" } diff --git a/adb_client/Cargo.toml b/adb_client/Cargo.toml index 16516e8..3de499d 100644 --- a/adb_client/Cargo.toml +++ b/adb_client/Cargo.toml @@ -13,26 +13,26 @@ version.workspace = true base64 = { version = "0.22.1" } bincode = { version = "1.3.3" } byteorder = { version = "1.5.0" } -chrono = { version = "0.4.38" } +chrono = { version = "0.4.39" } homedir = { version = "0.3.4" } image = { version = "0.25.5" } lazy_static = { version = "1.5.0" } log = { version = "0.4.22" } -mdns-sd = { version = "0.12.0" } +mdns-sd = { version = "0.13.1" } num-bigint = { version = "0.8.4", package = "num-bigint-dig" } num-traits = { version = "0.2.19" } quick-protobuf = { version = "0.8.1" } rand = { version = "0.8.5" } rcgen = { version = "0.13.1" } -regex = { version = "1.11.0", features = ["perf", "std", "unicode"] } +regex = { version = "1.11.1", features = ["perf", "std", "unicode"] } rsa = { version = "0.9.7" } rusb = { version = "0.9.4", features = ["vendored"] } rustls = { version = "0.23.18" } rustls-pki-types = "1.10.0" -serde = { version = "1.0.210", features = ["derive"] } +serde = { version = "1.0.216", features = ["derive"] } serde_repr = { version = "0.1.19" } sha1 = { version = "0.10.6", features = ["oid"] } -thiserror = { version = "2.0.1" } +thiserror = { version = "2.0.7" } [dev-dependencies] anyhow = { version = "1.0.93" } diff --git a/adb_client/README.md b/adb_client/README.md index 408e16f..f543984 100644 --- a/adb_client/README.md +++ b/adb_client/README.md @@ -2,7 +2,7 @@ [![MIT licensed](https://img.shields.io/crates/l/adb_client.svg)](./LICENSE-MIT) [![Documentation](https://docs.rs/adb_client/badge.svg)](https://docs.rs/adb_client) -![Crates.io Total Downloads](https://img.shields.io/crates/d/adb_client) +[![Crates.io Total Downloads](https://img.shields.io/crates/d/adb_client)](https://crates.io/crates/adb_client) Rust library implementing ADB protocol.