From 31f0b338034d63dcf9599ccfabb9818e9e2dc47b Mon Sep 17 00:00:00 2001 From: haixuantao Date: Mon, 30 Jun 2025 11:53:26 +0200 Subject: [PATCH] Fix coordinator not using build feature flag --- binaries/coordinator/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/binaries/coordinator/Cargo.toml b/binaries/coordinator/Cargo.toml index c11454f9..67ea2d6c 100644 --- a/binaries/coordinator/Cargo.toml +++ b/binaries/coordinator/Cargo.toml @@ -19,7 +19,7 @@ futures = "0.3.21" tokio = { version = "1.24.2", features = ["full"] } tokio-stream = { version = "0.1.8", features = ["io-util", "net"] } uuid = { version = "1.2.1" } -dora-core = { workspace = true } +dora-core = { workspace = true, features = ["build"] } tracing = "0.1.36" dora-tracing = { workspace = true, optional = true } futures-concurrency = "7.1.0"