docchi_json5 0.8.0

Handles customized json5 for my project
Documentation
1
2
3
4
5
6
7
8
9
10
11
12

#[cfg(test)]
mod tests {


    #[test]
    fn it_works() {
        let s = r#"{ a : 100, b : "abc" }"#.to_string();

        crate::de::from_str(&s).unwrap();
    }
}