commit | 0ba44b698605385f51d234dde44b599bf8f7bbfc | [log] [tgz] |
---|---|---|
author | Jeff Vander Stoep <[email protected]> | Wed Feb 07 21:42:41 2024 +0000 |
committer | Automerger Merge Worker <[email protected]> | Wed Feb 07 21:42:41 2024 +0000 |
tree | 68c2b5426766f3a2bc770792db8644d83602b4a5 | |
parent | 20db17911dc856eefef9058804f30401ed0a3e7b [diff] | |
parent | d3caacd55ecaf28f69cdb1fe3e06a356a604bc32 [diff] |
Upgrade toml_edit to 0.22.4 am: 4fa63b698c am: d3caacd55e Original change: https://android-review.googlesource.com/c/platform/external/rust/crates/toml_edit/+/2952815 Change-Id: I91e512a9b0e20e5afbbbb2d28272f340e04244b1 Signed-off-by: Automerger Merge Worker <[email protected]>
This crate allows you to parse and modify toml documents, while preserving comments, spaces and relative order of items.
toml_edit
is primarily tailored for cargo-edit needs.
use toml_edit::{Document, value}; fn main() { let toml = r#" "hello" = 'toml!' # comment ['a'.b] "#; let mut doc = toml.parse::<Document>().expect("invalid doc"); assert_eq!(doc.to_string(), toml); // let's add a new key/value pair inside a.b: c = {d = "hello"} doc["a"]["b"]["c"]["d"] = value("hello"); // autoformat inline table a.b.c: { d = "hello" } doc["a"]["b"]["c"].as_inline_table_mut().map(|t| t.fmt()); let expected = r#" "hello" = 'toml!' # comment ['a'.b] c = { d = "hello" } "#; assert_eq!(doc.to_string(), expected); }
Things it does not preserve:
Licensed under either of
Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.