adding send and sync?

This commit is contained in:
Chris Cochrun 2025-08-15 14:41:13 -05:00
parent 4e7e050bf6
commit 3c7fba4a2f

View file

@ -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 {