16 releases

0.4.9 Oct 25, 2024
0.4.8 Feb 15, 2024
0.4.6 Aug 24, 2023
0.4.5 Dec 21, 2022
0.3.1 Jul 3, 2022

#296 in Data structures

Download history 6720/week @ 2025-02-03 8301/week @ 2025-02-10 7066/week @ 2025-02-17 7670/week @ 2025-02-24 8153/week @ 2025-03-03 6818/week @ 2025-03-10 6185/week @ 2025-03-17 6158/week @ 2025-03-24 5269/week @ 2025-03-31 5561/week @ 2025-04-07 5417/week @ 2025-04-14 22084/week @ 2025-04-21 39604/week @ 2025-04-28 36781/week @ 2025-05-05 29983/week @ 2025-05-12 31736/week @ 2025-05-19

139,377 downloads per month
Used in 112 crates (2 directly)

MIT/Apache

32KB
906 lines

Lexical JSON number types

CI Crate informations License Documentation

This is a simple library for parsing and storing JSON numbers according to the JSON specification. It provides two types, the unsized Number type acting like str, and the NumberBuf<B> type owning the data inside the B type (by default String). By enabling the smallnumberbuf feature, the SmallNumberBuf<LEN> type is defined as NumberBuf<SmallVec<[u8; LEN]>> (where LEN=8 by default).

License

Licensed under either of

at your option.

Contribution

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

Dependencies

~2MB
~36K SLoC