From 7863d75e1fc1c221a33cf785f2fc2d74073f18ce Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 19 Mar 2025 09:14:26 +0000 Subject: [PATCH] build(deps): bump cxx from 1.0.124 to 1.0.149 Bumps [cxx](https://github.com/dtolnay/cxx) from 1.0.124 to 1.0.149. - [Release notes](https://github.com/dtolnay/cxx/releases) - [Commits](https://github.com/dtolnay/cxx/compare/1.0.124...1.0.149) --- updated-dependencies: - dependency-name: cxx dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- Cargo.lock | 36 +++++++++++++++++++++++++++++------- dlib-sys/Cargo.toml | 2 +- linux-hello/Cargo.toml | 2 +- opencv-sys/Cargo.toml | 2 +- 4 files changed, 32 insertions(+), 10 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index fb088b2..aedb0de 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1,6 +1,6 @@ # This file is automatically @generated by Cargo. # It is not intended for manual editing. -version = 3 +version = 4 [[package]] name = "addr2line" @@ -514,13 +514,15 @@ dependencies = [ [[package]] name = "cxx" -version = "1.0.124" +version = "1.0.149" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "273dcfd3acd4e1e276af13ed2a43eea7001318823e7a726a6b3ed39b4acc0b82" +checksum = "478c837c611bc2a9fdeec08f85a5b198bb4e0bbdb3069f02443d2291383a7b42" dependencies = [ "cc", + "cxxbridge-cmd", "cxxbridge-flags", "cxxbridge-macro", + "foldhash", "link-cplusplus", ] @@ -536,20 +538,34 @@ dependencies = [ "syn 2.0.50", ] +[[package]] +name = "cxxbridge-cmd" +version = "1.0.149" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a5fff7916bbde05c2db99469f09dcfaf203bf25b096ccbf4e761a04792412e10" +dependencies = [ + "clap", + "codespan-reporting", + "proc-macro2", + "quote", + "syn 2.0.50", +] + [[package]] name = "cxxbridge-flags" -version = "1.0.124" +version = "1.0.149" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "839fcd5e43464614ffaa989eaf1c139ef1f0c51672a1ed08023307fa1b909ccd" +checksum = "4336c994ee47479f439b61a9723ed894ab4551d91e0f217c1e84515d57ea3d4f" [[package]] name = "cxxbridge-macro" -version = "1.0.124" +version = "1.0.149" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4b2c1c1776b986979be68bb2285da855f8d8a35851a769fca8740df7c3d07877" +checksum = "4212f144792e9bc9d6891e369f87cc3adb7387a552993df8767d352482b3f88a" dependencies = [ "proc-macro2", "quote", + "rustversion", "syn 2.0.50", ] @@ -687,6 +703,12 @@ version = "1.0.7" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1" +[[package]] +name = "foldhash" +version = "0.1.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d9c4f5dac5e15c24eb999c26181a6ca40b39fe946cbe4c263c7209467bc83af2" + [[package]] name = "foreign-types" version = "0.3.2" diff --git a/dlib-sys/Cargo.toml b/dlib-sys/Cargo.toml index a9c473d..bc55ed3 100644 --- a/dlib-sys/Cargo.toml +++ b/dlib-sys/Cargo.toml @@ -9,7 +9,7 @@ build = "build.rs" links = "dlib-1" [dependencies] -cxx = "1.0.124" +cxx = "1.0.149" autocxx = "0.27.0" opencv-sys = {path = "../opencv-sys/"} diff --git a/linux-hello/Cargo.toml b/linux-hello/Cargo.toml index 837e0f2..56f7262 100644 --- a/linux-hello/Cargo.toml +++ b/linux-hello/Cargo.toml @@ -25,7 +25,7 @@ once_cell = "1.19.0" figment = { version = "0.10.19", features = ["toml", "env"] } nix = { version = "0.29.0", features = ["user"] } crossbeam-channel = "0.5.13" -cxx = "1.0.124" +cxx = "1.0.149" # tokio = { version = "1.37.0" } comfy-table = "7.1.1" tikv-jemallocator = "0.6.0" diff --git a/opencv-sys/Cargo.toml b/opencv-sys/Cargo.toml index c4150aa..8d2e070 100644 --- a/opencv-sys/Cargo.toml +++ b/opencv-sys/Cargo.toml @@ -9,7 +9,7 @@ build = "build.rs" links = "opencv4" [dependencies] -cxx = "1.0.124" +cxx = "1.0.149" autocxx = "0.27.0" serde = "1.0.204"