From 4ebbd99607627660ade7d7febe28f7bae1aae955 Mon Sep 17 00:00:00 2001 From: LIAUD Corentin Date: Sat, 24 May 2025 13:47:46 +0200 Subject: [PATCH] chore: bump criterion + pyo3 --- adb_client/Cargo.toml | 2 +- pyadb_client/Cargo.toml | 2 +- pyadb_client/README.md | 1 - 3 files changed, 2 insertions(+), 3 deletions(-) diff --git a/adb_client/Cargo.toml b/adb_client/Cargo.toml index 2e63047..d6c7c66 100644 --- a/adb_client/Cargo.toml +++ b/adb_client/Cargo.toml @@ -40,7 +40,7 @@ thiserror = { version = "2.0.7" } [dev-dependencies] anyhow = { version = "1.0.93" } -criterion = { version = "0.5.1" } # Used for benchmarks +criterion = { version = "0.6.0" } # Used for benchmarks [[bench]] harness = false diff --git a/pyadb_client/Cargo.toml b/pyadb_client/Cargo.toml index d53a519..6e860cb 100644 --- a/pyadb_client/Cargo.toml +++ b/pyadb_client/Cargo.toml @@ -21,6 +21,6 @@ name = "stub_gen" [dependencies] adb_client = { path = "../adb_client" } anyhow = { version = "1.0.95" } -pyo3 = { version = "0.24.1", features = ["abi3-py37", "anyhow"] } +pyo3 = { version = "0.25.0", features = ["abi3-py37", "anyhow"] } pyo3-stub-gen = "0.7.0" pyo3-stub-gen-derive = "0.7.0" diff --git a/pyadb_client/README.md b/pyadb_client/README.md index 83b22d5..c3d2110 100644 --- a/pyadb_client/README.md +++ b/pyadb_client/README.md @@ -47,7 +47,6 @@ usb_device.push("file.txt", "/data/local/tmp/file.txt") ```bash # Create Python virtual environment -cd pyadb_client python3 -m venv .venv source .venv/bin/activate