Crates.io | oxidized-json-checker |
lib.rs | oxidized-json-checker |
version | 0.3.2 |
source | src |
created_at | 2020-05-16 13:53:06.622174 |
updated_at | 2020-05-19 13:48:36.899211 |
description | A pushdown automaton low memory JSON bytes stream checker |
homepage | https://github.com/Kerollmops/oxidized-json-checker |
repository | https://github.com/Kerollmops/oxidized-json-checker |
max_upload_size | |
id | 242375 |
size | 34,176 |
This is a pure Rust version of the JSON_checker library.
This is a Pushdown Automaton that very quickly determines if a JSON text is syntactically correct. It could be used to filter inputs to a system, or to verify that the outputs of a system are syntactically correct.
You can use it with the std::io::Read
Rust trait to checked if a JSON is valid without having to keep it in memory.