1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
//! This is a minimalist JSON library that trades away several desirable
//! qualities (ergonomics, performance, ...) in favor of small code size and
//! fast compiles.
//!
//! It doesn't support serde, or any other custom derive. I'm not particularly
//! happy with the API, and will likely change it to be better in the future. As
//! a result, docs are somewhat sparse.
//!
//! ## Basic Usage
//! ```
//! use smoljson::Value;
//! let v = Value::from_str(r#"{"foo": [1, 2, {"bar": 3}]}"#).unwrap();
//! let expected = smoljson::json!({"foo": [1, 2, {"bar": 3}]});
//! assert_eq!(v, expected);
//! ```
//!
//! ## Intended use case
//!
//! The intended use case is situtions where small number of low maintenance
//! (rare changes to struct layout) data structures need (de)serialization in a
//! project where keeping a low compile time is important.
#![no_std]
#![allow(dead_code)]

#[doc(hidden)]
pub extern crate alloc;

#[doc(hidden)]
pub use core;

macro_rules! opt_extract {
    ($this:expr, $pat:pat => $res:expr) => {
        if let $pat = $this {
            $res
        } else {
            None
        }
    };
}

// `?` expansion currently harms both compile time (lots of llvm instrs
// generated) and runtime :(
macro_rules! tri {
    ($e:expr) => {
        match $e {
            Ok(v) => v,
            Err(e) => return Err(e),
        }
    };
}
#[macro_use]
mod mac;

pub mod read;
pub mod value;
pub mod write;
pub use read::{Error, Reader};
pub use value::Value;

pub type ValOwn = Value<'static>;