From c47561e498a994bdab8188674254437be49eddf1 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Tue, 21 Apr 2026 19:51:22 +0000 Subject: [PATCH 1/3] Update Rust crate code0-flow to 0.0.32 --- Cargo.lock | 4 ++-- Cargo.toml | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 47c291f..41cf877 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -289,9 +289,9 @@ checksum = "c8d4a3bb8b1e0c1050499d1815f5ab16d04f0959b233085fb31653fbfc9d98f9" [[package]] name = "code0-flow" -version = "0.0.31" +version = "0.0.32" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "fa74faab97705675a1288230e0861d8a61a5456a4adc81387c8fc0505c11df5c" +checksum = "bb7d74d62174eb76c90d7c1642a05f20084bb563ec8a1249c0f05bbd7ed03023" dependencies = [ "async-nats", "async-trait", diff --git a/Cargo.toml b/Cargo.toml index cb9f790..5382dc9 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -8,7 +8,7 @@ edition = "2024" [workspace.dependencies] async-trait = "0.1.89" -code0-flow = { version = "0.0.31" } +code0-flow = { version = "0.0.32" } tucana = { version = "0.0.68" } tokio = { version = "1.44.1", features = ["rt-multi-thread", "signal"] } log = "0.4.27" From 6a90e87eab778864f7ee255f353c7099c523e896 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Thu, 23 Apr 2026 19:29:18 +0000 Subject: [PATCH 2/3] Update Rust crate code0-flow to 0.0.32 --- Cargo.lock | 4 ++-- Cargo.toml | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index ce0a0ae..a7b34d5 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -289,9 +289,9 @@ checksum = "c8d4a3bb8b1e0c1050499d1815f5ab16d04f0959b233085fb31653fbfc9d98f9" [[package]] name = "code0-flow" -version = "0.0.31" +version = "0.0.32" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "fa74faab97705675a1288230e0861d8a61a5456a4adc81387c8fc0505c11df5c" +checksum = "bb7d74d62174eb76c90d7c1642a05f20084bb563ec8a1249c0f05bbd7ed03023" dependencies = [ "async-nats", "async-trait", diff --git a/Cargo.toml b/Cargo.toml index 3f53c22..535ef28 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -8,7 +8,7 @@ edition = "2024" [workspace.dependencies] async-trait = "0.1.89" -code0-flow = { version = "0.0.31" } +code0-flow = { version = "0.0.32" } tucana = { version = "0.0.68" } tokio = { version = "1.44.1", features = ["rt-multi-thread", "signal"] } log = "0.4.27" From 54c75b2a83917bc796d5cd2678773a9bbf9c21c4 Mon Sep 17 00:00:00 2001 From: Raphael Date: Thu, 23 Apr 2026 22:16:10 +0200 Subject: [PATCH 3/3] feat: added definition source --- crates/taurus/src/app/mod.rs | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/crates/taurus/src/app/mod.rs b/crates/taurus/src/app/mod.rs index 0da58ca..3bf3587 100644 --- a/crates/taurus/src/app/mod.rs +++ b/crates/taurus/src/app/mod.rs @@ -129,12 +129,13 @@ async fn setup_dynamic_services_if_needed( } async fn push_definitions_until_success(config: &Config) { - let definition_service = FlowUpdateService::from_url( + let mut definition_service = FlowUpdateService::from_url( config.aquila_url.clone(), config.definitions.as_str(), config.aquila_token.clone(), ) - .await; + .await + .with_definition_source(String::from("taurus")); let mut retry_count = 1; loop {