From 344c593761ab6587d6deb9112f36fae6a704665d Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 30 Dec 2024 07:19:44 +0000 Subject: [PATCH] build(deps): bump cxx from 1.0.130 to 1.0.136 Bumps [cxx](https://github.com/dtolnay/cxx) from 1.0.130 to 1.0.136. - [Release notes](https://github.com/dtolnay/cxx/releases) - [Commits](https://github.com/dtolnay/cxx/compare/1.0.130...1.0.136) --- updated-dependencies: - dependency-name: cxx dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- Cargo.lock | 33 +++++++++++++++++++++++++++------ Cargo.toml | 2 +- rust/libdnf-sys/Cargo.toml | 2 +- 3 files changed, 29 insertions(+), 8 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 90861c07c4..814dd63ecc 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -551,13 +551,15 @@ dependencies = [ [[package]] name = "cxx" -version = "1.0.130" +version = "1.0.136" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "23c042a0ba58aaff55299632834d1ea53ceff73d62373f62c9ae60890ad1b942" +checksum = "ad7c7515609502d316ab9a24f67dc045132d93bfd3f00713389e90d9898bf30d" dependencies = [ "cc", + "cxxbridge-cmd", "cxxbridge-flags", "cxxbridge-macro", + "foldhash", "link-cplusplus", ] @@ -575,17 +577,30 @@ dependencies = [ "syn 2.0.58", ] +[[package]] +name = "cxxbridge-cmd" +version = "1.0.136" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6c33fd49f5d956a1b7ee5f7a9768d58580c6752838d92e39d0d56439efdedc35" +dependencies = [ + "clap", + "codespan-reporting", + "proc-macro2", + "quote", + "syn 2.0.58", +] + [[package]] name = "cxxbridge-flags" -version = "1.0.130" +version = "1.0.136" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "aa7ed7d30b289e2592cc55bc2ccd89803a63c913e008e6eb59f06cddf45bb52f" +checksum = "be0f1077278fac36299cce8446effd19fe93a95eedb10d39265f3bf67b3036c9" [[package]] name = "cxxbridge-macro" -version = "1.0.130" +version = "1.0.136" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0b8c465d22de46b851c04630a5fc749a26005b263632ed2e0d9cc81518ead78d" +checksum = "3da7e4d6e74af6b79031d264b2f13c3ea70af1978083741c41ffce9308f1f24f" dependencies = [ "proc-macro2", "quote", @@ -805,6 +820,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/Cargo.toml b/Cargo.toml index 0c1da418af..85cc719347 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -55,7 +55,7 @@ cap-std = { version = "3", features = ["fs_utf8"] } rustix = { version = "0.38", features = ["use-libc", "process", "fs"] } chrono = { version = "0.4.38", features = ["serde"] } clap = { version = "4.5", features = ["derive"] } -cxx = "1.0.130" +cxx = "1.0.136" envsubst = "0.2.1" either = "1.13.0" env_logger = "0.11.5" diff --git a/rust/libdnf-sys/Cargo.toml b/rust/libdnf-sys/Cargo.toml index 9d91323784..8a97c25b9d 100644 --- a/rust/libdnf-sys/Cargo.toml +++ b/rust/libdnf-sys/Cargo.toml @@ -7,7 +7,7 @@ links = "dnf" publish = false [dependencies] -cxx = "1.0.130" +cxx = "1.0.136" [lib] name = "libdnf_sys"