aboutsummaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
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};
```