This commit is contained in:
mbecker20
2024-06-10 18:07:05 -07:00
parent c9abccaf02
commit 074f4ea2db
3 changed files with 5 additions and 5 deletions
Generated
+2 -2
View File
@@ -3822,9 +3822,9 @@ dependencies = [
[[package]]
name = "toml_pretty"
version = "0.2.0"
version = "0.3.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8df1befb0cfdeeec0adc0d34e25dec5466ea469a88f5cfd75bded7bb879ae7c0"
checksum = "82f8e4ea90d16b35c82cc8048862c6be67abe6ac2020929524bfc3105e74fd98"
dependencies = [
"ordered_hash_map",
"serde",
+1 -1
View File
@@ -34,7 +34,7 @@ partial_derive2 = "0.4.3"
derive_variants = "1.0.0"
mongo_indexed = "0.3.0"
resolver_api = "1.1.0"
toml_pretty = "0.2.0"
toml_pretty = "0.3.0"
parse_csl = "0.1.0"
mungos = "0.5.6"
svi = "1.0.1"
+2 -2
View File
@@ -600,7 +600,7 @@ fn serialize_resources_toml(
);
}
res.push_str(
&toml_pretty::to_string_custom_tab(&deployment, " ")
&toml_pretty::to_string_custom_tab(&parsed, " ")
.context("failed to serialize deployments to toml")?,
);
}
@@ -636,7 +636,7 @@ fn serialize_resources_toml(
}
res.push_str("[[build]]\n");
res.push_str(
&toml_pretty::to_string_custom_tab(&build, " ")
&toml_pretty::to_string_custom_tab(&parsed, " ")
.context("failed to serialize builds to toml")?,
);
}