We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e14b63e commit e94f92cCopy full SHA for e94f92c
Cargo.toml
@@ -2,6 +2,7 @@
2
name = "mahler"
3
version = "0.19.4"
4
edition = "2021"
5
+rust-version = "1.81"
6
description = "An automated job orchestration library that builds and executes dynamic workflows"
7
homepage = "https://github.com/balena-io-modules/mahler-rs"
8
keywords = ["job", "orchestration", "workflow", "library"]
src/extract/view.rs
@@ -393,7 +393,7 @@ mod tests {
393
394
assert_eq!(view.as_ref(), None);
395
396
- let value = view.get_or_insert_default();
+ let value = view.get_or_insert(0);
397
*value = 3;
398
399
// Get the list changes to the view
0 commit comments