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

#256 in Data structures

Download history 6016/week @ 2024-12-01 6504/week @ 2024-12-08 6125/week @ 2024-12-15 3929/week @ 2024-12-22 4116/week @ 2024-12-29 5309/week @ 2025-01-05 6730/week @ 2025-01-12 9086/week @ 2025-01-19 7813/week @ 2025-01-26 6768/week @ 2025-02-02 8108/week @ 2025-02-09 7173/week @ 2025-02-16 7593/week @ 2025-02-23 8251/week @ 2025-03-02 6929/week @ 2025-03-09 5703/week @ 2025-03-16

28,924 downloads per month
Used in 103 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