forked from BurntSushi/byteorder
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
37 lines (31 loc) · 1.01 KB
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
[package]
name = "byteorder"
version = "1.3.2" #:version
authors = ["Andrew Gallant <[email protected]>"]
description = "Library for reading/writing numbers in big-endian and little-endian."
documentation = "https://docs.rs/byteorder"
homepage = "https://github.com/BurntSushi/byteorder"
repository = "https://github.com/BurntSushi/byteorder"
readme = "README.md"
categories = ["encoding", "parsing"]
keywords = ["byte", "endian", "big-endian", "little-endian", "binary"]
license = "Unlicense OR MIT"
exclude = ["/ci/*"]
build = "build.rs"
[lib]
name = "byteorder"
bench = false
[dev-dependencies]
quickcheck = { version = "0.8", default-features = false }
rand = "0.6"
doc-comment = "0.3"
[features]
std = []
# This feature is no longer used and is DEPRECATED. This crate now
# automatically enables i128 support for Rust compilers that support it. The
# feature will be removed if and when a new major version is released.
i128 = []
[profile.bench]
opt-level = 3
[badges]
travis-ci = { repository = "BurntSushi/byteorder" }