Skip to content

Commit da39ce5

Browse files
Merge pull request #173 from code0-tech/renovate/tucana-0.x
Update Rust crate tucana to 0.0.76
2 parents bc0175d + e7613c3 commit da39ce5

4 files changed

Lines changed: 8 additions & 4 deletions

File tree

Cargo.lock

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

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ homepage = "https://code0.tech"
88
license = "Apache-2.0"
99

1010
[dependencies]
11-
tucana = { version = "0.0.75", features = ["aquila"], optional = true }
11+
tucana = { version = "0.0.76", features = ["aquila"], optional = true }
1212
log = { version = "0.4.24", optional = true }
1313
tonic = { version = "0.14.1", optional = true }
1414
dotenv = { version = "0.15.0", optional = true }

src/flow_definition/mod.rs

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
#![allow(dead_code)]
2+
13
mod error;
24
mod feature;
35

@@ -53,7 +55,7 @@ impl LoadedModule {
5355
}
5456

5557
Module {
56-
identifier: self.config.identifier,
58+
identifier: self.config.identifier.clone(),
5759
name: self.config.name,
5860
description: self.config.description,
5961
documentation: self.config.documentation,
@@ -67,6 +69,7 @@ impl LoadedModule {
6769
definition_data_types: self.data_types,
6870
configurations: self.configurations,
6971
definitions: self.definitions,
72+
definition_source: self.config.identifier,
7073
}
7174
}
7275
}

src/flow_service/mod.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -168,6 +168,7 @@ mod tests {
168168
definition_data_types: Vec::new(),
169169
configurations: Vec::new(),
170170
definitions: Vec::new(),
171+
definition_source: identifier.to_string(),
171172
}
172173
}
173174

0 commit comments

Comments
 (0)