From 12289b7d6854bef50130835209b826d2a36866ed Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fran=C3=A7ois=20Garillot?= <4142+huitseeker@users.noreply.github.com> Date: Tue, 20 Feb 2024 17:33:31 -0500 Subject: [PATCH] chore: make bellpepper depend on released version of the core package (#84) * chore: make bellpepper depende on released version of the core package * ci: run on dev as well --- .github/workflows/rust.yml | 4 ++-- crates/bellpepper/Cargo.toml | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml index 2adfd2e..233a3e1 100644 --- a/.github/workflows/rust.yml +++ b/.github/workflows/rust.yml @@ -3,10 +3,10 @@ name: Rust on: merge_group: push: - branches: [main] + branches: [main, dev] pull_request: types: [opened, synchronize, reopened, ready_for_review] - branches: [main] + branches: [main, dev] concurrency: group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }} diff --git a/crates/bellpepper/Cargo.toml b/crates/bellpepper/Cargo.toml index 39e1f01..68d2dd8 100644 --- a/crates/bellpepper/Cargo.toml +++ b/crates/bellpepper/Cargo.toml @@ -16,7 +16,7 @@ edition = "2021" rust-version = "1.66.0" [dependencies] -bellpepper-core = { version = "0.4", path = "../bellpepper-core" } +bellpepper-core = { version = "0.4" } byteorder = { workspace = true } ff = { workspace = true }