blob: 728f6680543627dd3e6615fae3a2c3f0b4e4f398 [file] [log] [blame]
Chih-Hung Hsiehabcf84f2019-10-25 15:50:59 -07001[package]
2name = "byteorder"
Joel Galenson578f4352021-04-01 15:18:27 -07003version = "1.4.3" #:version
Chih-Hung Hsiehabcf84f2019-10-25 15:50:59 -07004authors = ["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"
Yi Kong053c0682021-02-14 22:04:08 +080010categories = ["encoding", "parsing", "no-std"]
Chih-Hung Hsiehabcf84f2019-10-25 15:50:59 -070011keywords = ["byte", "endian", "big-endian", "little-endian", "binary"]
12license = "Unlicense OR MIT"
13exclude = ["/ci/*"]
Yi Kong053c0682021-02-14 22:04:08 +080014edition = "2018"
Chih-Hung Hsiehabcf84f2019-10-25 15:50:59 -070015
16[lib]
17name = "byteorder"
18bench = false
19
20[dev-dependencies]
Yi Kong053c0682021-02-14 22:04:08 +080021quickcheck = { version = "0.9.2", default-features = false }
22rand = "0.7"
Chih-Hung Hsiehabcf84f2019-10-25 15:50:59 -070023
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