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

#268 in Data structures

Download history 6220/week @ 2024-09-26 6626/week @ 2024-10-03 6704/week @ 2024-10-10 7598/week @ 2024-10-17 7494/week @ 2024-10-24 6346/week @ 2024-10-31 4637/week @ 2024-11-07 5267/week @ 2024-11-14 5547/week @ 2024-11-21 5703/week @ 2024-11-28 6207/week @ 2024-12-05 6093/week @ 2024-12-12 4992/week @ 2024-12-19 3317/week @ 2024-12-26 5260/week @ 2025-01-02 5326/week @ 2025-01-09

19,929 downloads per month
Used in 85 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