From 36531230b3623fddba0c3ab54ba66fd8db91bc2d Mon Sep 17 00:00:00 2001 From: Taiki Endo Date: Wed, 17 Jan 2024 10:45:04 +0900 Subject: [PATCH] Use version-less manifests for example https://github.com/rust-lang/cargo/commit/307486ed181ac1455767dac866030ce5b67caf67 --- .github/workflows/ci.yml | 4 ++-- examples/kiss3d/Cargo.toml | 2 -- 2 files changed, 2 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 39c6b60..8bb03c9 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -42,8 +42,8 @@ jobs: - uses: dtolnay/rust-toolchain@stable - name: Install cargo-hack uses: taiki-e/install-action@cargo-hack - - run: cargo hack build --workspace --ignore-private --feature-powerset - - run: cargo hack build --workspace --ignore-private --feature-powerset --rust-version + - run: cargo hack build --workspace --no-private --feature-powerset + - run: cargo hack build --workspace --no-private --feature-powerset --rust-version fmt: runs-on: ubuntu-latest diff --git a/examples/kiss3d/Cargo.toml b/examples/kiss3d/Cargo.toml index 6009504..d5e9840 100644 --- a/examples/kiss3d/Cargo.toml +++ b/examples/kiss3d/Cargo.toml @@ -1,8 +1,6 @@ [package] name = "kiss3d-example" -version = "0.0.0" edition = "2021" -publish = false [dependencies] mesh-loader = { path = "../.." }