forked from BurntSushi/byteorder
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
32 lines (27 loc) · 831 Bytes
/
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
[package]
name = "byteorder"
# NB: When modifying, also modify html_root_url in lib.rs
version = "1.1.0" #: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/MIT"
[lib]
name = "byteorder"
bench = false
[dev-dependencies]
quickcheck = { version = "0.4", default-features = false }
rand = "0.3"
[features]
default = ["std"]
std = []
i128 = []
[profile.bench]
opt-level = 3
[badges]
travis-ci = { repository = "BurntSushi/byteorder" }