mirror of
https://github.com/moghtech/komodo.git
synced 2026-09-09 08:01:31 +00:00
fix toml
This commit is contained in:
Generated
+2
-2
@@ -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
@@ -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"
|
||||
|
||||
@@ -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")?,
|
||||
);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user