summaryrefslogtreecommitdiff
path: root/serde_v8
AgeCommit message (Collapse)Author
2021-05-10upgrade: rusty_v8 0.22.2 (#10551)Bartek Iwańczuk
2021-04-30feat(serde_v8): ZeroCopyBuf (#10432)Aaron O'Mullan
Bidirectional zero-copy serialization of buffers between v8 & rust that can be nested in structs/tuples/etc.
2021-04-21chore: release crates (#10269)Bartek Iwańczuk
* Revert "tooling(bench_util): benching and profiling utilities (#10223)" This reverts commit 733a00030582375c43fa156e978f25df6ecc9e9a. * Upgrade notify
2021-04-20chore: update copyright headers (#10243)Yoshiya Hinosawa
2021-04-19refactor(core): move SerializablePkg to serde_v8 (#10231)Aaron O'Mullan
2021-04-18refactor(serde_v8): move magic code to subfolder and minor cleanup (#10230)Aaron O'Mullan
2021-04-18lint(serde_v8): fix "inconsistent struct constructor" (#10227)Aaron O'Mullan
2021-04-13chore: release crates (#10164)Bartek Iwańczuk
2021-04-13upgrade: rusty_v8 0.22.1 (V8 9.1.269.5) (#10159)Bert Belder
2021-04-13upgrade: rusty_v8 0.22.0 (V8 9.1.269.2) (#10152)Bert Belder
2021-04-08chore: update deps (#10058)Luca Casonato
This commit updates crate dependencies.
2021-04-04perf(serde_v8): preallocate vector when serializing arrays (#9955)Aaron O'Mullan
2021-04-04perf(serde_v8): drop need for EscapableHandleScope (#9990)Aaron O'Mullan
This is another improvement to serde_v8's serialization code, it drops the need for creating a v8::EscapableHandleScope or "subscope".
2021-04-04perf(serde_v8): introduce Serializable boxable object (#9983)Aaron O'Mullan
2021-04-04perf(serde_v8): drop need for RC in serializer (#9987)Aaron O'Mullan
Which substantially improves the performance of to_v8() by removing Rc's overhead (extra allocs, drops, checks, etc...)
2021-04-02perf(serde_v8/de): implement SeqAccess size_hint (#9975)Aaron O'Mullan
2021-03-31refactor: new optimized op-layer using serde_v8 (#9843)Aaron O'Mullan
- Improves op performance. - Handle op-metadata (errors, promise IDs) explicitly in the op-layer vs per op-encoding (aka: out-of-payload). - Remove shared queue & custom "asyncHandlers", all async values are returned in batches via js_recv_cb. - The op-layer should be thought of as simple function calls with little indirection or translation besides the conceptually straightforward serde_v8 bijections. - Preserve concepts of json/bin/min as semantic groups of their inputs/outputs instead of their op-encoding strategy, preserving these groups will also facilitate partial transitions over to v8 Fast API for the "min" and "bin" groups
2021-03-30serde_v8: restore ser/de benches (#9939)Aaron O'Mullan
2021-03-28chore: fix clippy warning in serde_v8. (#9917)Divy Srivastava
2021-03-27chore: add Deno copyright headers to all rust files (#9909)Aaron O'Mullan
2021-03-26chore: publish serde_v8, bump version (#9898)Ryan Dahl
2021-03-25Introduce serde_v8 (#9722)Aaron O'Mullan