16 stable releases
2.0.5 | Sep 12, 2021 |
---|---|
2.0.4 | Mar 16, 2021 |
1.0.9 | Jan 24, 2021 |
1.0.5 | Dec 7, 2020 |
0.0.4 | Dec 30, 2019 |
#1096 in Encoding
31 downloads per month
150KB
3K
SLoC
nop-json
This is full-featured modern JSON implementation according to ECMA-404 standard.
This crate allows deserialization of JSON Iterator<u8>
stream into primitive types (bool
, i32
, etc.),
Strings and any other types that implement special trait called TryFromJson
, which can be implemented
automatically through #[derive(TryFromJson)]
for your structs and enums.
And serialization back to JSON through DebugToJson
trait, that acts like Debug, allowing to
print your objects with println!()
and such. Or through WriteToJson
trait that allows to write
to a io::Write
stream.
This crate allows to read whitespece-separated JSON values from stream in sequence. It also allows to pipe blob strings to a writer.
Documentation
Dependencies
~1.5MB
~36K SLoC