summaryrefslogtreecommitdiff
path: root/serde_v8/src/magic/mod.rs
diff options
context:
space:
mode:
authorAaron O'Mullan <aaron.omullan@gmail.com>2021-10-20 00:00:45 +0200
committerGitHub <noreply@github.com>2021-10-20 00:00:45 +0200
commit4f48efcc55b9e6cc0dd212ebd8e729909efed1ab (patch)
tree78f06eff5e21bddc9c6be0a3fc809d2b4a5932cb /serde_v8/src/magic/mod.rs
parentad20e52c27a88b8481b2d8e169bde4a9b4952cb6 (diff)
chore: return serde_v8 to main repo (#12500)
Reduces fragmentation, avoids version drift and facilitates coordinating serde_v8 and op-layer changes
Diffstat (limited to 'serde_v8/src/magic/mod.rs')
-rw-r--r--serde_v8/src/magic/mod.rs9
1 files changed, 9 insertions, 0 deletions
diff --git a/serde_v8/src/magic/mod.rs b/serde_v8/src/magic/mod.rs
new file mode 100644
index 000000000..00c06fd4c
--- /dev/null
+++ b/serde_v8/src/magic/mod.rs
@@ -0,0 +1,9 @@
+// Copyright 2018-2021 the Deno authors. All rights reserved. MIT license.
+pub mod buffer;
+pub mod bytestring;
+mod field;
+mod value;
+pub mod zero_copy_buf;
+
+pub use field::FieldSerializer;
+pub use value::{Value, FIELD, NAME};