From 3c7fba4a2f4f99c7ef3c021da8afe2a9ec08584f Mon Sep 17 00:00:00 2001 From: Chris Cochrun Date: Fri, 15 Aug 2025 14:41:13 -0500 Subject: [PATCH] adding send and sync? --- src/types.rs | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/types.rs b/src/types.rs index 96e0700..5a57f38 100644 --- a/src/types.rs +++ b/src/types.rs @@ -31,6 +31,10 @@ pub enum Value { Keyword(Keyword), } +unsafe impl Sync for Value {} + +unsafe impl Send for Value {} + impl Value { fn parse(str: &str) -> Self { match str {