1 | [package] |
2 | name = "byteorder-lite" |
3 | version = "0.1.0" |
4 | description = "Library for reading/writing numbers in big-endian and little-endian." |
5 | documentation = "https://docs.rs/byteorder-lite" |
6 | homepage = "https://github.com/image-rs/byteorder-lite" |
7 | repository = "https://github.com/image-rs/byteorder-lite" |
8 | readme = "README.md" |
9 | categories = ["encoding" , "parsing" , "no-std" ] |
10 | keywords = ["byte" , "endian" , "big-endian" , "little-endian" , "binary" ] |
11 | license = "Unlicense OR MIT" |
12 | edition = "2021" |
13 | rust-version = "1.60" |
14 | include = ["README.md" , "LICENSE-MIT" , "UNLICENSE" , "src/*" ] |
15 | |
16 | [lib] |
17 | bench = false |
18 | |
19 | [dev-dependencies] |
20 | quickcheck = { version = "0.9.2" , default-features = false } |
21 | rand = "0.7" |
22 | |
23 | [features] |
24 | default = ["std" ] |
25 | std = [] |
26 | |
27 | [profile.bench] |
28 | opt-level = 3 |
29 | |