From 0a680f8d2eca49f5fcbbfb890c824ef92eb6f711 Mon Sep 17 00:00:00 2001 From: Ivan Boldyrev Date: Tue, 9 Jan 2024 21:12:21 +0100 Subject: [PATCH] chore(build): break circular dependency With a legacy syntax hack. --- air/Cargo.toml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/air/Cargo.toml b/air/Cargo.toml index 4eb0e198..08c9f903 100644 --- a/air/Cargo.toml +++ b/air/Cargo.toml @@ -47,7 +47,9 @@ strum_macros = "0.24" tracing = "0.1.40" rkyv = { version = "0.7.43", features = ["strict", "validation", "size_32", "archive_be"] } -[dev-dependencies] +# The old syntax prevents release-please from detecting a circular dependency: +# aquavm-air -> air-test-utils -> aquavm-air +[dev_dependencies] air-test-utils = { path = "../crates/air-lib/test-utils" } air-testing-framework = { path = "../crates/testing-framework" } fluence-app-service = "0.29.0"