pikkr 0.5.0

JSON Parser which picks up values directly without performing tokenization in Rust
1
2
3
4
5
6
7
use fnv::{FnvHashMap, FnvHashSet};

#[derive(Debug)]
pub struct Stat<'a> {
    pub locs: FnvHashSet<usize>,
    pub children: Option<FnvHashMap<&'a[u8], Stat<'a>>>,
}