• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1[package]
2name = "byteorder"
3version = "1.3.2"  #: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"]
11keywords = ["byte", "endian", "big-endian", "little-endian", "binary"]
12license = "Unlicense OR MIT"
13exclude = ["/ci/*"]
14build = "build.rs"
15
16[lib]
17name = "byteorder"
18bench = false
19
20[dev-dependencies]
21quickcheck = { version = "0.8", default-features = false }
22rand = "0.6"
23doc-comment = "0.3"
24
25[features]
26default = ["std"]
27std = []
28
29# This feature is no longer used and is DEPRECATED. This crate now
30# automatically enables i128 support for Rust compilers that support it. The
31# feature will be removed if and when a new major version is released.
32i128 = []
33
34[profile.bench]
35opt-level = 3
36
37[badges]
38travis-ci = { repository = "BurntSushi/byteorder" }
39