diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 708d281..deb0e56 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -34,7 +34,7 @@ jobs: with: toolchain: 1.97.1 components: clippy - - run: cargo clippy --workspace --all-targets --all-features -- -D warnings + - run: cargo clippy --locked --workspace --all-targets --all-features -- -D warnings test: name: Test @@ -44,7 +44,7 @@ jobs: - uses: dtolnay/rust-toolchain@master with: toolchain: 1.97.1 - - run: cargo test --workspace --all-targets --all-features + - run: cargo test --locked --workspace --all-targets --all-features wasi-python: name: WASI Python @@ -63,4 +63,4 @@ jobs: - name: Test Python component env: MACAW_WASM_COMPONENT: ${{ github.workspace }}/examples/wasm/python/target/http-auth-plugin-python.wasm - run: cargo test --release -p macaw-wasm --test recorder + run: cargo test --locked --release -p macaw-wasm --test recorder diff --git a/Cargo.lock b/Cargo.lock index a145b40..0503ce7 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1873,7 +1873,7 @@ checksum = "112b39cec0b298b6c1999fee3e31427f74f676e4cb9879ed1a121b43661a4154" [[package]] name = "macaw" -version = "0.2.0" +version = "0.3.0" dependencies = [ "anyhow", "async-stream", @@ -1908,7 +1908,7 @@ dependencies = [ [[package]] name = "macaw-core" -version = "0.2.0" +version = "0.3.0" dependencies = [ "anyhow", "arrayvec", @@ -1944,7 +1944,7 @@ dependencies = [ [[package]] name = "macaw-http" -version = "0.2.0" +version = "0.3.0" dependencies = [ "anyhow", "async-trait", @@ -1984,7 +1984,7 @@ dependencies = [ [[package]] name = "macaw-wasm" -version = "0.2.0" +version = "0.3.0" dependencies = [ "anyhow", "dyn-clonable", @@ -2007,7 +2007,7 @@ dependencies = [ [[package]] name = "macaw-ws" -version = "0.2.0" +version = "0.3.0" dependencies = [ "ahash", "anyhow",