diff options
author | Aapo Alasuutari <aapo.alasuutari@gmail.com> | 2023-02-22 19:32:38 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-02-22 19:32:38 +0200 |
commit | b56b8c8a753442036ace3bb0f4403c952f18d408 (patch) | |
tree | 675c47da4847a754cf2cc3cb664dc8047944246d /serde_v8/lib.rs | |
parent | 2bd7482295daae4edfd367d84505bb43735cd410 (diff) |
feat(ext/ffi): Replace pointer integers with v8::External objects (#16889)
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 c15ca715a..b857acbe8 100644 --- a/serde_v8/lib.rs +++ b/serde_v8/lib.rs @@ -20,6 +20,7 @@ pub use magic::bytestring::ByteString; pub use magic::detached_buffer::DetachedBuffer; pub use magic::string_or_buffer::StringOrBuffer; pub use magic::u16string::U16String; +pub use magic::ExternalPointer; pub use magic::Global; pub use magic::Value; pub use ser::to_v8; |