From b969e62a566c4c010d16744abb42d939bff2a3df Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 23 Dec 2024 07:37:33 +0000 Subject: [PATCH] build(deps): bump cxx from 1.0.130 to 1.0.135 Bumps [cxx](https://github.com/dtolnay/cxx) from 1.0.130 to 1.0.135. - [Release notes](https://github.com/dtolnay/cxx/releases) - [Commits](https://github.com/dtolnay/cxx/compare/1.0.130...1.0.135) --- 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..f8566dabea 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -551,13 +551,15 @@ dependencies = [ [[package]] name = "cxx" -version = "1.0.130" +version = "1.0.135" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "23c042a0ba58aaff55299632834d1ea53ceff73d62373f62c9ae60890ad1b942" +checksum = "4d44ff199ff93242c3afe480ab588d544dd08d72e92885e152ffebc670f076ad" 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.135" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "4717c9c806a9e07fdcb34c84965a414ea40fafe57667187052cf1eb7f5e8a8a9" +dependencies = [ + "clap", + "codespan-reporting", + "proc-macro2", + "quote", + "syn 2.0.58", +] + [[package]] name = "cxxbridge-flags" -version = "1.0.130" +version = "1.0.135" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "aa7ed7d30b289e2592cc55bc2ccd89803a63c913e008e6eb59f06cddf45bb52f" +checksum = "2f6515329bf3d98f4073101c7866ff2bec4e635a13acb82e3f3753fff0bf43cb" [[package]] name = "cxxbridge-macro" -version = "1.0.130" +version = "1.0.135" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0b8c465d22de46b851c04630a5fc749a26005b263632ed2e0d9cc81518ead78d" +checksum = "fb93e6a7ce8ec985c02bbb758237a31598b340acbbc3c19c5a4fa6adaaac92ab" 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..c46eca9f8e 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.135" 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..61a023611e 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.135" [lib] name = "libdnf_sys"