pikkr 0.16.0

JSON Parser which picks up values directly without performing tokenization in Rust
1
2
3
4
5
6
7
8
9
10
11
12
#!/bin/bash -eu

export RUSTFLAGS="-C target-cpu=native"

cargo build --release
cargo test --release

rustfmt_installed=$(cargo install --list | grep rustfmt-nightly | wc -l)
if [ $rustfmt_installed -eq 0 ]; then
    cargo install rustfmt-nightly
fi
cargo fmt -- --write-mode=diff