From 86623daf5715ad2d2c6cd611106bb5aeb69d8c25 Mon Sep 17 00:00:00 2001 From: Dan Ballard Date: Wed, 8 Sep 2021 08:24:24 -0700 Subject: [PATCH] allow non snake case in structs cus event_ID from libcwtch-go go standard --- src/structs.rs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/structs.rs b/src/structs.rs index 97ec563..3197f25 100644 --- a/src/structs.rs +++ b/src/structs.rs @@ -1,3 +1,5 @@ +#![allow(non_snake_case)] + use serde::{Deserialize, Serialize}; use std::collections::HashMap;