Scans any string for JSON objects/arrays and deserializes all matches into `Vec<T>`.
```rust
use serde::Deserialize;
use json_finder::find_json;
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.
MIT