David Tolnay
David Tolnay
The Display impl for minimal_yaml::Yaml currently renders a map `k: v` as: ```yaml {"k" : "v" } ``` The block style would be more idiomatic for emitting maps. ```yaml k:...
It has been deprecated: [announcement](https://users.rust-lang.org/t/deprecation-of-rustc-serialize/10485?u=dtolnay). Is there any functionality you would require from another library before this would be possible?
If I know for sure that I have numbers in the range 0 .. 100_000_000, I want to be able to use an 8-byte buffer rather than needing 20 bytes...
https://github.com/mmstick/numtoa/issues/4#issuecomment-274293855 Based on the benchmark code in #4 but writing to Vec\, itoa is about 10% faster. ```rust let mut null = Vec::new(); for number in 0..100_000_000u64 { null.clear(); /*...
Can the same triple and quad digit lookup table technique be applied to f32 and f64? I would love to have something faster than [`dtoa`](https://github.com/dtolnay/dtoa).
If I know what the response body looks like, I want to be able to do something like: ``` rust #[derive(Deserialize)] struct MyResponse { user: String, commits: Vec, } fn...
What is the order of magnitude of the improvement that momo would enable? I think some indication of this would be necessary for readers to determine whether the cost/benefit tradeoff...
The readme explains in words what to do, but it would be good to show a code snippet using momo. In fact most of what's in https://llogiq.github.io/2019/05/18/momo.html would be well...
#4 seems like it would have been caught by a basic test.
Let's copy the implementation from serde_json: https://github.com/serde-rs/json/blob/v0.9.8/json/src/macros.rs and make it work with rustc-serialize. Then we no longer need an unstable plugin.