miniserde 0.1.45

Data structure serialization library with several opposite design goals from Serde.
Documentation
1
2
3
4
5
6
7
8
9
#![allow(clippy::assertions_on_result_states)]

use miniserde::json;

#[test]
fn main() {
    let result = json::from_str::<bool>(" true && false ");
    assert!(result.is_err());
}