json_finder 0.1.1

find json in a any string and deserializes it against specific structs into Vec<T>
Documentation
# json_finder

Scans any string for JSON objects/arrays and deserializes all matches into `Vec<T>`.

```rust
use serde::Deserialize;
use json_finder::find_json;

#[derive(Deserialize)]
struct Person { name: String, age: u32 }

let results: Vec<Person> = find_json(r#"noise {"name":"Alice","age":30} more noise"#);
```

Non-matching JSON and surrounding noise are silently skipped.

## License

MIT