diff options
author | Luca Casonato <hello@lcas.dev> | 2023-03-16 17:59:47 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-03-16 16:59:47 +0000 |
commit | b99c431ac78810034ea57cc778bf57d627998aa9 (patch) | |
tree | 4398efcd8d3757e42a5cd4bdcee4ed9533103f43 /serde_v8/lib.rs | |
parent | 1a3c2e2f1dc5add94b5b7ff4ba4c26df55c7a011 (diff) |
feat(serde_v8): support BigInt serialization (#18225)
This commit enables serializing `v8::BigInt` to `num_bigint::BigInt`
in Rust.
Pre-requisite for sub upcoming feature work.
Diffstat (limited to 'serde_v8/lib.rs')
-rw-r--r-- | serde_v8/lib.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/serde_v8/lib.rs b/serde_v8/lib.rs index b857acbe8..1d17914bb 100644 --- a/serde_v8/lib.rs +++ b/serde_v8/lib.rs @@ -15,6 +15,7 @@ pub use de::Deserializer; pub use error::Error; pub use error::Result; pub use keys::KeyCache; +pub use magic::bigint::BigInt; pub use magic::buffer::ZeroCopyBuf; pub use magic::bytestring::ByteString; pub use magic::detached_buffer::DetachedBuffer; |