toml icon indicating copy to clipboard operation
toml copied to clipboard

Rust TOML Parser

Results 98 toml issues
Sort by recently updated
recently updated
newest added

When attempting to use an untagged enum over a `char` as a map key while serializing to TOML I see this error: `map key was not a string`. Writing my...

A-serde

This would - Reduce allocations for `toml_edit::Document` - Allow easier editing as users can make changes and the formatting "auto-adapts" (see rust-lang/cargo#12837) This comes at the cost of - Making...

C-enhancement
A-parse
A-edit

(This is a copy-paste of a bug I sent you in 2022, which was closed rather than copied to the new repo. I note that you still have a preserves-order...

atm the next toml release contains - Aligning inline tables with inline arrays - Unicode bare identifiers - etc The unicode one will be a challenge as it might require...

C-enhancement
A-parse
A-output

With `0.6` , the serialization of floats changed. When serializing `0.1`, the results are: - Before, with 0.5: `0.1`. Relied on [`Display`](https://github.com/toml-rs/toml/blob/toml-v0.5/crates/toml/src/ser.rs#L747) - Now, with 0.6: `0.10000000149011612`. Relies on [serde](https://github.com/toml-rs/toml/blob/main/crates/toml_edit/src/ser/value.rs#L109)...

C-bug

Bumps [bumpalo](https://github.com/fitzgen/bumpalo) from 3.11.0 to 3.12.0. Changelog Sourced from bumpalo's changelog. 3.12.0 Released 2023-01-17. Added Added the bumpalo::boxed::Box::bump and bumpalo::collections::String::bump getters to get the underlying Bump that a string or...

Here's the [playground](https://play.rust-lang.org/?version=stable&mode=debug&edition=2021&gist=8236aab88b594d17eebbd410d13ac485) to reproduce the issue. It panics with `UnsupportedType(Some("Magic"))` `serde_json` can do it, but `toml` cant.

C-bug
A-serde

Hi everyone (and epage in particular), thanks for all your hard work on toml! Really appreciating all the work y'all have done integrating toml_edit and toml. For [guppy](https://github.com/guppy-rs/guppy), tried upgrading...

C-enhancement
A-edit

Recently, I ran a `cargo update` on my project, and the release binary size jumped ~0.13MB. Relevant CI builds are https://github.com/ravenclaw900/DietPi-Dashboard/actions/runs/5523750813 (old) and https://github.com/ravenclaw900/DietPi-Dashboard/actions/runs/5524904223 (new). I am aware that this...

C-enhancement
A-edit