1[package] 2name = "byteorder" 3version = "1.4.3" #:version 4authors = ["Andrew Gallant <jamslam@gmail.com>"] 5description = "Library for reading/writing numbers in big-endian and little-endian." 6documentation = "https://docs.rs/byteorder" 7homepage = "https://github.com/BurntSushi/byteorder" 8repository = "https://github.com/BurntSushi/byteorder" 9readme = "README.md" 10categories = ["encoding", "parsing", "no-std"] 11keywords = ["byte", "endian", "big-endian", "little-endian", "binary"] 12license = "Unlicense OR MIT" 13exclude = ["/ci/*"] 14edition = "2018" 15 16[lib] 17name = "byteorder" 18bench = false 19 20[dev-dependencies] 21quickcheck = { version = "0.9.2", default-features = false } 22rand = "0.7" 23 24[features] 25default = ["std"] 26std = [] 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. 31i128 = [] 32 33[profile.bench] 34opt-level = 3 35