From 6c23693a778bacc8f84db0c05f14f1ab7cdca372 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 29 Jun 2026 06:23:36 +0000 Subject: [PATCH] Bump opencv from 0.98.2 to 0.99.0 Bumps [opencv](https://github.com/twistedfall/opencv-rust) from 0.98.2 to 0.99.0. - [Changelog](https://github.com/twistedfall/opencv-rust/blob/master/CHANGES.md) - [Commits](https://github.com/twistedfall/opencv-rust/compare/v0.98.2...v0.99.0) --- updated-dependencies: - dependency-name: opencv dependency-version: 0.99.0 dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- Cargo.lock | 21 ++++++++++++++------- Cargo.toml | 2 +- 2 files changed, 15 insertions(+), 8 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 7804a80..6104f7b 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -114,7 +114,7 @@ checksum = "2352e5597e9c544d5e6d9c95190d5d27738ade584fa8db0a16e130e5c2b5296e" dependencies = [ "jobserver", "libc", - "shlex", + "shlex 1.3.0", ] [[package]] @@ -429,9 +429,9 @@ checksum = "a4895175b425cb1f87721b59f0f286c2092bd4af812243672510e1ac53e2e0ad" [[package]] name = "opencv" -version = "0.98.2" +version = "0.99.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0c607a407be5ff2484f55d2eb289bffd01de84f962779b8470e76f035dd3563d" +checksum = "e64a4ee03d2ec18c19d62b7fa4f570840c424853343ac085a9e3cedc60d88c4b" dependencies = [ "cc", "dunce", @@ -441,23 +441,24 @@ dependencies = [ "opencv-binding-generator", "pkg-config", "semver", - "shlex", + "shlex 2.0.1", "vcpkg", "windows", ] [[package]] name = "opencv-binding-generator" -version = "0.101.0" +version = "0.102.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "833f00c6deee8dd615249af42fa35ff030c5c73ee3c13e44baf1135a4d57af86" +checksum = "d6df5c8a6b61606e5581388ce115393f14691d9bbb1756a364c559d94a466405" dependencies = [ "clang", "clang-sys", "dunce", "percent-encoding", "regex", - "shlex", + "semver", + "shlex 2.0.1", ] [[package]] @@ -667,6 +668,12 @@ version = "1.3.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64" +[[package]] +name = "shlex" +version = "2.0.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f8fadd59c855ef2080decdef8ff161eb6661b86933c9d82e5ba29dc602a55aba" + [[package]] name = "signal-hook-registry" version = "1.4.6" diff --git a/Cargo.toml b/Cargo.toml index 2504a0b..fe42184 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -6,7 +6,7 @@ edition = "2024" [dependencies] clap = { version = "4.6.1", features = ["derive"] } directories = "6.0.0" -opencv = { version = "0.98.2", default-features = false, features = [ +opencv = { version = "0.99.0", default-features = false, features = [ "clang-runtime", "videoio", ] }