Age | Commit message (Collapse) | Author | |
---|---|---|---|
2022-12-17 | chore: update to Rust 1.66.0 (#17078) | linbingquan | |
2022-11-18 | chore: use Rust 1.65.0 (#16688) | Aaron O'Mullan | |
2022-10-08 | fix(serde_v8): avoid creating unsound slice reference (#16189) | Nugine | |
This commit fixes one ocurrence of unsoundness by using the newly added API (`v8::String::write_utf8_uninit`). See also [`clippy:uninit_vec`](https://rust-lang.github.io/rust-clippy/master/index.html#uninit_vec). Note that it is not actually a bug. Avoiding unsoundness improves our code quality. | |||
2022-10-03 | chore(serde_v8): Use SeqAccess in MapObjectAccess to avoid intermediate ↵ | Jakub Łabor | |
allocation (#16137) Existing implementation builds an intermediate vector of object keys when deserializing using `MapObjectAccess`. This logic is already handled by `SeqAccess` which can be used directly by `MapObjectAccess`. | |||
2022-10-02 | fix(serde_v8): serialize objects with numeric keys correctly (#15946) | Darshan Sen | |
Signed-off-by: Darshan Sen <raisinten@gmail.com> | |||
2022-10-02 | fix(serde_v8): Implement MapAccess for StructAccess (#15962) | Jakub Łabor | |
`StructAccess` implements` serde::de::SeqAccess` instead of `serde::de::MapAccess` thus interpreting structs as sequences. | |||
2022-09-17 | chore: upgrade rusty_v8 to v0.50.0 (#15762) | Darshan Sen | |
Signed-off-by: Darshan Sen <raisinten@gmail.com> Co-authored-by: Bartek Iwańczuk <biwanczuk@gmail.com> | |||
2022-09-02 | feat(serde_v8): Support StringObject as unit enum variant (#15715) | Jakub Łabor | |
2022-07-28 | serde_v8: improvements to avoid hitting unimplemented codepaths (#13915) | Arthur Silva | |
2022-07-01 | chore: use Rust 1.62.0 (#15028) | Bartek Iwańczuk | |
2022-05-15 | perf(serde_v8): fast path for large strings (#14450) | Aaron O'Mullan | |
2022-04-25 | cleanup(serde_v8): disambiguate ZeroCopyBuf (#14380) | Aaron O'Mullan | |
2022-04-24 | perf(serde_v8): zero-copy StringOrBuffer (#14381) | Aaron O'Mullan | |
2022-04-12 | fix(serde_v8): more robust number deserialization (#14216) | Aaron O'Mullan | |
Fixes #14128 | |||
2022-04-02 | feat(serde_v8): DetachedBuffer (#14102) | Aaron O'Mullan | |
2022-03-24 | chore: drop src/ in bench_util & serde_v8 (#14097) | Aaron O'Mullan | |
To align with conventions used in our other crates |