]> git.proxmox.com Git - rustc.git/blob - vendor/byteorder/README.md
New upstream version 1.55.0+dfsg1
[rustc.git] / vendor / byteorder / README.md
1 This crate provides convenience methods for encoding and decoding
2 numbers in either big-endian or little-endian order.
3
4 [![Build status](https://api.travis-ci.org/BurntSushi/byteorder.svg)](https://travis-ci.org/BurntSushi/byteorder)
5 [![](http://meritbadge.herokuapp.com/byteorder)](https://crates.io/crates/byteorder)
6
7 Dual-licensed under MIT or the [UNLICENSE](http://unlicense.org).
8
9
10 ### Documentation
11
12 https://docs.rs/byteorder
13
14
15 ### Installation
16
17 This crate works with Cargo and is on
18 [crates.io](https://crates.io/crates/byteorder). Add it to your `Cargo.toml`
19 like so:
20
21 ```toml
22 [dependencies]
23 byteorder = "1"
24 ```
25
26 If you want to augment existing `Read` and `Write` traits, then import the
27 extension methods like so:
28
29 ```rust
30 extern crate byteorder;
31
32 use byteorder::{ReadBytesExt, WriteBytesExt, BigEndian, LittleEndian};
33 ```
34
35 For example:
36
37 ```rust
38 use std::io::Cursor;
39 use byteorder::{BigEndian, ReadBytesExt};
40
41 let mut rdr = Cursor::new(vec![2, 5, 3, 0]);
42 // Note that we use type parameters to indicate which kind of byte order
43 // we want!
44 assert_eq!(517, rdr.read_u16::<BigEndian>().unwrap());
45 assert_eq!(768, rdr.read_u16::<BigEndian>().unwrap());
46 ```
47
48 ### `no_std` crates
49
50 This crate has a feature, `std`, that is enabled by default. To use this crate
51 in a `no_std` context, add the following to your `Cargo.toml`:
52
53 ```toml
54 [dependencies]
55 byteorder = { version = "1", default-features = false }
56 ```
57
58
59 ### Alternatives
60
61 Note that as of Rust 1.32, the standard numeric types provide built-in methods
62 like `to_le_bytes` and `from_le_bytes`, which support some of the same use
63 cases.