From eb54d0e7397c6ccc9df20d5368819bb0c5913379 Mon Sep 17 00:00:00 2001 From: mgi388 <135186256+mgi388@users.noreply.github.com> Date: Tue, 13 Aug 2024 12:03:30 +1000 Subject: [PATCH] remove version from circular-dep and reinstate publish verify --- .github/workflows/cd.yml | 2 +- Cargo.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/cd.yml b/.github/workflows/cd.yml index 4be1b9d..2c66369 100644 --- a/.github/workflows/cd.yml +++ b/.github/workflows/cd.yml @@ -15,6 +15,6 @@ jobs: - name: Install Rust toolchain uses: dtolnay/rust-toolchain@stable - uses: Swatinem/rust-cache@v2 - - run: cargo publish --no-verify + - run: cargo publish env: CARGO_REGISTRY_TOKEN: ${{ secrets.CARGO_REGISTRY_TOKEN }} diff --git a/Cargo.toml b/Cargo.toml index 2b468f4..19f0494 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -32,7 +32,7 @@ optional = true [dev-dependencies] # Enable the bevy_reflect feature when testing. -darkomen = { path = ".", version = "0.2.0", features = ["bevy_reflect"] } +darkomen = { path = ".", features = ["bevy_reflect"] } imageproc = "0.25" pretty_assertions = "1.4" rand_chacha = "0.3"