From 491c0024b15f7d1dc79808046f6bafa1e93f222e Mon Sep 17 00:00:00 2001 From: Colin Walters Date: Wed, 30 Aug 2023 08:36:52 -0400 Subject: [PATCH 1/2] ci/autovendor: Make it work I copied this from bootc but forgot that there we're auto-vendoring from the `cli` directory. Fix this to work from the toplevel here. --- .github/workflows/autovendor.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/autovendor.yml b/.github/workflows/autovendor.yml index 2867e08788..3331f35b7b 100644 --- a/.github/workflows/autovendor.yml +++ b/.github/workflows/autovendor.yml @@ -17,7 +17,7 @@ jobs: - name: Install vendor tool run: cargo install cargo-vendor-filterer - name: Run - run: mkdir -p target && cd cli && cargo vendor-filterer --format=tar.zstd --prefix=vendor/ ../target/vendor.tar.zst + run: mkdir -p target && cargo vendor-filterer --format=tar.zstd --prefix=vendor/ target/vendor.tar.zst - uses: actions/upload-artifact@v3 with: name: vendor.tar.zst From 51df714fb6bf423458470a4e208e97ed329f85ce Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 4 Sep 2023 17:36:13 +0000 Subject: [PATCH 2/2] build(deps): bump cxx from 1.0.105 to 1.0.107 Bumps [cxx](https://github.com/dtolnay/cxx) from 1.0.105 to 1.0.107. - [Release notes](https://github.com/dtolnay/cxx/releases) - [Commits](https://github.com/dtolnay/cxx/compare/1.0.105...1.0.107) --- updated-dependencies: - dependency-name: cxx dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- Cargo.lock | 12 ++++++------ Cargo.toml | 2 +- rust/libdnf-sys/Cargo.toml | 2 +- 3 files changed, 8 insertions(+), 8 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 24a13338b5..49cc244822 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -626,9 +626,9 @@ dependencies = [ [[package]] name = "cxx" -version = "1.0.105" +version = "1.0.107" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "666a3ec767f4bbaf0dcfcc3b4ea048b90520b254fdf88813e763f4c762636c14" +checksum = "bbe98ba1789d56fb3db3bee5e032774d4f421b685de7ba703643584ba24effbe" dependencies = [ "cc", "cxxbridge-flags", @@ -653,15 +653,15 @@ dependencies = [ [[package]] name = "cxxbridge-flags" -version = "1.0.105" +version = "1.0.107" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d6e8c238aadc4b9f2c00269d04c87abb23f96dd240803872536eed1a304bb40e" +checksum = "20888d9e1d2298e2ff473cee30efe7d5036e437857ab68bbfea84c74dba91da2" [[package]] name = "cxxbridge-macro" -version = "1.0.105" +version = "1.0.107" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "59d9ffb4193dd22180b8d5747b1e095c3d9c9c665ce39b0483a488948f437e06" +checksum = "2fa16a70dd58129e4dfffdff535fb1bce66673f7bbeec4a5a1765a504e1ccd84" dependencies = [ "proc-macro2", "quote", diff --git a/Cargo.toml b/Cargo.toml index b8479018e0..bfd798a604 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -55,7 +55,7 @@ rustix = { version = "0.37", features = ["use-libc"] } cap-primitives = "1.0.3" chrono = { version = "0.4.26", features = ["serde"] } clap = { version = "4.3", features = ["derive"] } -cxx = "1.0.105" +cxx = "1.0.107" envsubst = "0.2.1" either = "1.8.1" env_logger = "0.10.0" diff --git a/rust/libdnf-sys/Cargo.toml b/rust/libdnf-sys/Cargo.toml index e060cae789..6ecba80898 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.105" +cxx = "1.0.107" [lib] name = "libdnf_sys"