epage on toml-v0.7.0
epage on main
docs: Update changelog chore: Bump versions chore: Release (compare)
epage on toml_datetime-v0.6.0
epage on v0.19.0
epage on main
fix(edit)!: Remove easy API fix(toml)!: Remove deprecated E… fix(edit)!: Remove deprecated E… and 3 more (compare)
epage on main
test: Verify datetime output test(toml): Demonstrate bad beh… refactor(date): Make error non_… and 3 more (compare)
epage on main
docs: Update changelog chore: Release (compare)
epage on v0.18.1
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 that