1 | [package] |
2 | name = "byteorder" |
3 | version = "1.5.0" #:version |
4 | authors = ["Andrew Gallant <jamslam@gmail.com>" ] |
5 | description = "Library for reading/writing numbers in big-endian and little-endian." |
6 | documentation = "https://docs.rs/byteorder" |
7 | homepage = "https://github.com/BurntSushi/byteorder" |
8 | repository = "https://github.com/BurntSushi/byteorder" |
9 | readme = "README.md" |
10 | categories = ["encoding" , "parsing" , "no-std" ] |
11 | keywords = ["byte" , "endian" , "big-endian" , "little-endian" , "binary" ] |
12 | license = "Unlicense OR MIT" |
13 | edition = "2021" |
14 | rust-version = "1.60" |
15 | |
16 | [lib] |
17 | name = "byteorder" |
18 | bench = false |
19 | |
20 | [dev-dependencies] |
21 | quickcheck = { version = "0.9.2" , default-features = false } |
22 | rand = "0.7" |
23 | |
24 | [features] |
25 | default = ["std" ] |
26 | std = [] |
27 | |
28 | # This feature is no longer used and is DEPRECATED. This crate now |
29 | # automatically enables i128 support for Rust compilers that support it. The |
30 | # feature will be removed if and when a new major version is released. |
31 | i128 = [] |
32 | |
33 | [profile.bench] |
34 | opt-level = 3 |
35 | |