Arbitrary JSON

This crate provide a compatibility layer between serde_json and arbitrary. This allow you to generate random valid json when fuzzing your rust code. See the following example:

```rust

![no_main]

use arbitraryjson::ArbitraryValue; use libfuzzersys::fuzz_target;

fuzztarget!(|data: ArbitraryValue| { // call your very complex code here if data["truc"] == serdejson::json!(42) { panic!("Found the magic value"); } }); ```