epage on main
docs: Update changelog chore: Update release process chore: Release (compare)
epage on main
docs(serde-spanned): display fe… docs(toml-datetime): display fe… docs(toml-edit): display featur… and 2 more (compare)
value::ValueType
enum
insert_at
, and sort_entries_by
is it possible for us to use a single
Value
enum?
Well, we have TableChild and TableChildMut, this basically covers all types (except for the document).
if this is not meant to be used to parse 10GB files, it's fine use just add a bunch of Rc/Arc
The problem with Rc is not only performance consideration, but also that it's painful to use without non-lexical lifetimes. Actually early version used Rc as pointer to the document in table and array of tables, but I switched to raw pointers later (it's was before initial public commit).
toml_edit
. Would love to help with thatDocument::from_str
would first convert &str
to Token
stream and then use document parser on top of tokens. This probably means changing error type to include Token error.