You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -5,7 +5,7 @@ lil `#![no_std]` Rust crate to parse & serialize JavaScript Object Notation (JSO
5
5
JSON can be serialized into any type that implements [`embedded_io::Write`](https://docs.rs/embedded-io/latest/embedded_io/trait.Write.html) or a `String` (with `alloc` feature enabled). Only 4 dependencies:
6
6
1.[embedded-io](https://crates.io/crates/embedded-io) for `#![no_std]` friendly `Write` trait
7
7
1.[numtoa](https://crates.io/crates/numtoa) for converting numbers into base 10 ascii
8
-
1.[else](https://crates.io/crates/elsa) (with `alloc` feature enabled) for implementing an infinite string escape buffer
8
+
1.[elsa](https://crates.io/crates/elsa) (with `alloc` feature enabled) for implementing an infinite length string escape buffer
9
9
1.[embedded-io-adapters](https://crates.io/crates/embedded-io-adapters) (with `std` feature enabled) for translating `embedded_io::Write` to `std::io::Write`
10
10
11
11
Here is a minimal example of serializing a JSON object to stdout with a one-liner, making use of the `lil-json::FieldBuffer` auto trait, `core::convert::From for JsonValue`, & `core::convert::Into for JsonField`
0 commit comments