Juniper Tyree

Results 292 comments of Juniper Tyree

Mmmm. We definitely do not guarantee the bit pattern of the parsed NaNs in RON, but preserving the sign would be good. Perhaps we could add a special NaN path,...

It is already possible to use the component model with wasmi (as long as no multi-memory is required, see https://github.com/wasmi-labs/wasmi/issues/776) using the [`wasm_component_layer`](https://docs.rs/wasm_component_layer) and [`wasmi_runtime_layer`](https://docs.rs/wasmi_runtime_layer) crates (the former provides component...

Thank you very much for your help and your reply! We’re trying to get this method working at the moment, since we’re looking for strict relative error bounds, but if...

Good point @ChocolateLoverRaj! Feel free to submit a follow-up PR that adds an `alloc` feature. We could then guard some ser/de impls just how serde does. `ron::value` would also be...

With #582 we unfortunately need to keep some derives in the core crate

In #582 we unfortunately have to add some derives so that we no longer need to rely on serde internals (since the derives can access them). Other derives could probably...

There is currently an RFC for Rust to gain de-dented string literals, https://github.com/rust-lang/rfcs/pull/3830. If it is adopted, it would make the most sense for RON to adapt the syntax that...

Thank you for the question! At the moment, it is unfortunately not possible to support this. While we could add a special case to typed deserialisation (when calling deserialize_enum), it...

@agriyakhetarpal What's the status of this PR?

Thank you for exploring it further @wiiznokes! I personally think that many improvements are still blocked on serde, perhaps we can come back to this once ron is given more...