From f97ad8cad5fa5398b7f9f6e3718109111487d1e2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jos=C3=A9=20Ulises=20Ni=C3=B1o=20Rivera?= Date: Fri, 18 Oct 2024 15:33:33 -0400 Subject: [PATCH] fix MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: José Ulises Niño Rivera --- crates/Cargo.toml | 1 + crates/llm_gateway/tests/integration.rs | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/crates/Cargo.toml b/crates/Cargo.toml index f8bfc0d2..3ba99280 100644 --- a/crates/Cargo.toml +++ b/crates/Cargo.toml @@ -1,2 +1,3 @@ [workspace] +resolver = "2" members = ["llm_gateway", "prompt_gateway", "common"] diff --git a/crates/llm_gateway/tests/integration.rs b/crates/llm_gateway/tests/integration.rs index 80ff8d9f..7ec92ccd 100644 --- a/crates/llm_gateway/tests/integration.rs +++ b/crates/llm_gateway/tests/integration.rs @@ -7,7 +7,7 @@ use serial_test::serial; use std::path::Path; fn wasm_module() -> String { - let wasm_file = Path::new("target/wasm32-wasi/release/llm_gateway.wasm"); + let wasm_file = Path::new("../target/wasm32-wasi/release/llm_gateway.wasm"); assert!( wasm_file.exists(), "Run `cargo build --release --target=wasm32-wasi` first"