5 releases

0.2.0 Mar 23, 2024
0.2.0-alpha.2 Nov 13, 2023
0.2.0-alpha.1 Sep 23, 2023
0.1.1 Jul 27, 2021
0.1.0 May 30, 2021

#732 in Encoding

Download history 1353/week @ 2024-10-21 1898/week @ 2024-10-28 1082/week @ 2024-11-04 903/week @ 2024-11-11 913/week @ 2024-11-18 812/week @ 2024-11-25 1716/week @ 2024-12-02 1473/week @ 2024-12-09 1862/week @ 2024-12-16 1371/week @ 2024-12-23 722/week @ 2024-12-30 996/week @ 2025-01-06 1489/week @ 2025-01-13 1304/week @ 2025-01-20 1093/week @ 2025-01-27 934/week @ 2025-02-03

5,004 downloads per month
Used in 41 crates (5 directly)

MIT/Apache

63KB
1.5K SLoC

JSON streaming parser

actions status Latest Version Released API docs

JSON event parser is a simple streaming JSON parser and serializer implementation in Rust.

It does not aims to be the fastest JSON parser possible but to be a simple implementation.

If you want fast and battle-tested code you might prefer to use json, serde_json or simd-json.

Reader example:

use json_event_parser::{FromReadJsonReader, JsonEvent};

let json = b"{\"foo\": 1}";
let mut reader = FromReadJsonReader::new(json.as_slice());
assert_eq!(reader.read_next_event()?, JsonEvent::StartObject);
assert_eq!(reader.read_next_event()?, JsonEvent::ObjectKey("foo".into()));
assert_eq!(reader.read_next_event()?, JsonEvent::Number("1".into()));
assert_eq!(reader.read_next_event()?, JsonEvent::EndObject);
assert_eq!(reader.read_next_event()?, JsonEvent::Eof);
# std::io::Result::Ok(())

Writer example:

use json_event_parser::{ToWriteJsonWriter, JsonEvent};

let mut writer = ToWriteJsonWriter::new(Vec::new());
writer.write_event(JsonEvent::StartObject)?;
writer.write_event(JsonEvent::ObjectKey("foo".into()))?;
writer.write_event(JsonEvent::Number("1".into()))?;
writer.write_event(JsonEvent::EndObject)?;

assert_eq!(writer.finish()?.as_slice(), b"{\"foo\":1}");
# std::io::Result::Ok(())

License

This project is licensed under either of

  • Apache License, Version 2.0, (LICENSE-APACHE or <http://www.apache.org/licenses/LICENSE-2.0>)
  • MIT license (LICENSE-MIT or <http://opensource.org/licenses/MIT>)

at your option.

Contribution

Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in json-event-parser by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.

Dependencies

~0–5.5MB
~20K SLoC