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