Skip to content

Commit d93d9c9

Browse files
Merge pull request #108 from code0-tech/renovate/code0-flow-0.x
Update Rust crate code0-flow to 0.0.17
2 parents e0e8f14 + 5dbd8c8 commit d93d9c9

File tree

3 files changed

+15
-31
lines changed

3 files changed

+15
-31
lines changed

Cargo.lock

Lines changed: 10 additions & 27 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,16 +7,16 @@ version = "0.0.0"
77
edition = "2024"
88

99
[workspace.dependencies]
10-
code0-flow = { version = "0.0.16" }
11-
tucana = { version = "0.0.33", features = ["aquila"] }
10+
code0-flow = { version = "0.0.17" }
11+
tucana = { version = "0.0.36", features = ["aquila"] }
1212
serde_json = { version = "1.0.138" }
1313
log = "0.4.27"
1414
env_logger = "0.11.8"
1515
regex = "1.11.1"
1616
tokio = { version = "1.44.1", features = ["rt-multi-thread"] }
1717
uuid = { version = "1.16.0", features = ["v4"] }
1818
tonic = "0.14.0"
19-
async-nats = "0.42.0"
19+
async-nats = "0.44.2"
2020
async-trait = "0.1.88"
2121
anyhow = "1.0.98"
2222
prost = "0.14.0"

crates/base/src/store.rs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -148,8 +148,9 @@ impl AdapterStore {
148148
fn convert_validation_flow(flow: ValidationFlow, input_value: Option<Value>) -> ExecutionFlow {
149149
ExecutionFlow {
150150
flow_id: flow.flow_id,
151-
starting_node: flow.starting_node,
151+
starting_node_id: flow.starting_node_id,
152152
input_value,
153+
node_functions: flow.node_functions,
153154
}
154155
}
155156

0 commit comments

Comments
 (0)