]> git.proxmox.com Git - rustc.git/blobdiff - vendor/byteorder/README.md
New upstream version 1.64.0+dfsg1
[rustc.git] / vendor / byteorder / README.md
index 8940b295199257e3ccafaf4b0432f2460e83c5f7..d8461c58f7060ea5511e21da072e9465acd7c6f6 100644 (file)
@@ -1,10 +1,12 @@
+byteorder
+=========
 This crate provides convenience methods for encoding and decoding
 numbers in either big-endian or little-endian order.
 
-[![Build status](https://api.travis-ci.org/BurntSushi/byteorder.svg)](https://travis-ci.org/BurntSushi/byteorder)
-[![](http://meritbadge.herokuapp.com/byteorder)](https://crates.io/crates/byteorder)
+[![Build status](https://github.com/BurntSushi/byteorder/workflows/ci/badge.svg)](https://github.com/BurntSushi/byteorder/actions)
+[![](https://meritbadge.herokuapp.com/byteorder)](https://crates.io/crates/byteorder)
 
-Dual-licensed under MIT or the [UNLICENSE](http://unlicense.org).
+Dual-licensed under MIT or the [UNLICENSE](https://unlicense.org/).
 
 
 ### Documentation
@@ -27,8 +29,6 @@ If you want to augment existing `Read` and `Write` traits, then import the
 extension methods like so:
 
 ```rust
-extern crate byteorder;
-
 use byteorder::{ReadBytesExt, WriteBytesExt, BigEndian, LittleEndian};
 ```