Juniper Tyree
Juniper Tyree
The related PR #257 was closed. `from_reader`, `from_str` and ~~`from_slice`~~ `from_bytes` are already available in the `de` module. `from_value` is trivial to add (the functionality exists as `value.into_rust()`), but `to_value`...
Thank you @obi1kenobi for providing a very good test case - I just realised that https://github.com/ron-rs/ron/pull/451 fixed the issue and have added a test to ensure it remains working.
Thank you @caelunshun and @joonazan for providing very good test cases - I just stumbled across the issue and added a test and it seems like #451 fixed the issue....
I've been thinking about a more AST-like Value type again and this is a sketch of what a `NewValue` might look like: ```rust pub enum NewValue { Unit, Bool(bool), Number(Number),...
> Is there any progress made on this? Not yet, unfortunately. Once I am back from parental leave, I will first tackle *finally* publishing v0.9, which includes a list of...
It definitely could, though I'm personally a bit sceptical of having too many items in the root module. If this is mainly about discovery, we could perhaps link to `to_string_pretty`...
> If that's a concern, then a documentation link may be the best solution. > > I'm not sure how you'll address it, but here's my thoughts on the matter:...
> > serde is a rust standard > > Serde is something like "greatest common divisor" of all parsing formats - it allows swapping formats for simple cases, but when...
I have been thinking again about #403 again recently but have not come up yet with a better solution. While we could land #403 at any time, having this special...
I did a bit more digging and flatten is even more broken than I had realised the last time. #403 would only sort-of-fix deserialising from a RON struct into a...