From a099d1ad5f9584976fb58ff7180f76a6b466ffa8 Mon Sep 17 00:00:00 2001 From: Seyon Sivarajah Date: Tue, 17 Dec 2024 12:16:27 +0000 Subject: [PATCH] chore: maturin develop in justfile + bump execute version (#730) --- Cargo.lock | 2 +- execute_llvm/Cargo.toml | 2 +- justfile | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index ca3c20f0..ddb2de16 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -449,7 +449,7 @@ dependencies = [ [[package]] name = "execute_llvm" -version = "0.1.0" +version = "0.2.0" dependencies = [ "hugr", "inkwell", diff --git a/execute_llvm/Cargo.toml b/execute_llvm/Cargo.toml index 33e4f51a..e67ea79a 100644 --- a/execute_llvm/Cargo.toml +++ b/execute_llvm/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "execute_llvm" -version = "0.1.0" +version = "0.2.0" edition.workspace = true homepage.workspace = true repository.workspace = true diff --git a/justfile b/justfile index d0399767..806a1e02 100644 --- a/justfile +++ b/justfile @@ -21,7 +21,7 @@ _prepare-test: # Build the validator binary if rust is installed. Otherwise, skip it. cargo build --release -p validator || true # Build the execution binary if rust is installed. Otherwise, skip it. - uv run maturin build -m execute_llvm/Cargo.toml --release || true + uv run maturin develop -m execute_llvm/Cargo.toml --release || true # Run the tests. test *PYTEST_FLAGS: _prepare-test