From 0984d78a9f728d9626652759c8714dd7730baaff Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 14 Mar 2025 09:53:44 +0000 Subject: [PATCH] build(deps): bump cxx from 1.0.124 to 1.0.146 Bumps [cxx](https://github.com/dtolnay/cxx) from 1.0.124 to 1.0.146. - [Release notes](https://github.com/dtolnay/cxx/releases) - [Commits](https://github.com/dtolnay/cxx/compare/1.0.124...1.0.146) --- 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..82c5b9a 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.146" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "273dcfd3acd4e1e276af13ed2a43eea7001318823e7a726a6b3ed39b4acc0b82" +checksum = "1de88e785b0a1ce3f28af40f289e5f368a23528562db4c6837036d2dff9a5cbf" 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.146" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "2a20529e8e70e5b11bb265ca926758ff22dac41008b94e831d043b8fef66d672" +dependencies = [ + "clap", + "codespan-reporting", + "proc-macro2", + "quote", + "syn 2.0.50", +] + [[package]] name = "cxxbridge-flags" -version = "1.0.124" +version = "1.0.146" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "839fcd5e43464614ffaa989eaf1c139ef1f0c51672a1ed08023307fa1b909ccd" +checksum = "9d85a5be275867aefa8fd18790d8f6c03915eb79619672d6b4b7d0fca5ecfa37" [[package]] name = "cxxbridge-macro" -version = "1.0.124" +version = "1.0.146" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4b2c1c1776b986979be68bb2285da855f8d8a35851a769fca8740df7c3d07877" +checksum = "d0d0f54b137299572d42ef838ad7beeff8eea80eced305a30431756c7f6bf20f" 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.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a0d2fde1f7b3d48b8395d5f2de76c18a528bd6a9cdde438df747bfcba3e05d6f" + [[package]] name = "foreign-types" version = "0.3.2" diff --git a/dlib-sys/Cargo.toml b/dlib-sys/Cargo.toml index a9c473d..dd2957e 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.146" autocxx = "0.27.0" opencv-sys = {path = "../opencv-sys/"} diff --git a/linux-hello/Cargo.toml b/linux-hello/Cargo.toml index 837e0f2..8dc8a0d 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.146" # 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..4c50070 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.146" autocxx = "0.27.0" serde = "1.0.204"