aboutsummaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authorYi Kong <yikong@google.com>2021-02-14 22:04:08 +0800
committerYi Kong <yikong@google.com>2021-02-25 02:33:55 +0800
commit053c06814ac0a64d3e73081d306ba68ebdf3f500 (patch)
tree1d2c75e55b87037eeb1b8b4a646b5e36df3ae1c8 /README.md
parent38c3e288c6aae8e4fa4682a40f85bcf97eaa8f8e (diff)
downloadbyteorder-053c06814ac0a64d3e73081d306ba68ebdf3f500.tar.gz
Update to 1.4.2
Change-Id: I9b660b3276276d55040849a3cd6e5b70dbcd513b Merged-In: I9b660b3276276d55040849a3cd6e5b70dbcd513b (cherry picked from commit 6d7927fcf9f2566d106f4d23fa0d29bd830b9bb7)
Diffstat (limited to 'README.md')
-rw-r--r--README.md6
1 files changed, 3 insertions, 3 deletions
diff --git a/README.md b/README.md
index 8940b29..8b2ecc4 100644
--- a/README.md
+++ b/README.md
@@ -1,7 +1,9 @@
+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)
+[![Build status](https://github.com/BurntSushi/byteorder/workflows/ci/badge.svg)](https://github.com/BurntSushi/byteorder/actions)
[![](http://meritbadge.herokuapp.com/byteorder)](https://crates.io/crates/byteorder)
Dual-licensed under MIT or the [UNLICENSE](http://unlicense.org).
@@ -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};
```