Prepare for 1.0, switch to docs.rs.

Fixes #57
diff --git a/Cargo.toml b/Cargo.toml
index 32894e6..cecbda4 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -3,7 +3,7 @@
 version = "0.5.3"  #:version
 authors = ["Andrew Gallant <jamslam@gmail.com>"]
 description = "Library for reading/writing numbers in big-endian and little-endian."
-documentation = "http://burntsushi.net/rustdoc/byteorder/"
+documentation = "https://docs.rs/byteorder"
 homepage = "https://github.com/BurntSushi/byteorder"
 repository = "https://github.com/BurntSushi/byteorder"
 readme = "README.md"
diff --git a/Makefile b/Makefile
deleted file mode 100644
index 9f956f4..0000000
--- a/Makefile
+++ /dev/null
@@ -1,14 +0,0 @@
-all:
-	echo Nothing to do...
-
-ctags:
-	ctags --recurse --options=ctags.rust --languages=Rust
-
-docs:
-	cargo doc
-	in-dir ./target/doc fix-perms
-	rscp ./target/doc/* gopher:~/www/burntsushi.net/rustdoc/
-
-push:
-	git push origin master
-	git push github master
diff --git a/README.md b/README.md
index 5640f3e..298a99d 100644
--- a/README.md
+++ b/README.md
@@ -1,6 +1,5 @@
 This crate provides convenience methods for encoding and decoding numbers in
-either big-endian or little-endian order. This is meant to replace the old
-methods defined on the standard library `Reader` and `Writer` traits.
+either big-endian or little-endian order.
 
 [![Build status](https://api.travis-ci.org/BurntSushi/byteorder.png)](https://travis-ci.org/BurntSushi/byteorder)
 [![](http://meritbadge.herokuapp.com/byteorder)](https://crates.io/crates/byteorder)
@@ -10,20 +9,18 @@
 
 ### Documentation
 
-[http://burntsushi.net/rustdoc/byteorder/](http://burntsushi.net/rustdoc/byteorder/).
-
-The documentation includes examples.
+https://docs.rs/byteorder
 
 
 ### Installation
 
 This crate works with Cargo and is on
-[crates.io](https://crates.io/crates/byteorder). The package is regularly
-updated.  Add it to your `Cargo.toml` like so:
+[crates.io](https://crates.io/crates/byteorder). Add it to your `Cargo.toml`
+like so:
 
 ```toml
 [dependencies]
-byteorder = "0.5"
+byteorder = "1"
 ```
 
 If you want to augment existing `Read` and `Write` traits, then import the
@@ -55,5 +52,5 @@
 
 ```toml
 [dependencies]
-byteorder = { version = "0.5", default-features = false }
+byteorder = { version = "1", default-features = false }
 ```
diff --git a/session.vim b/session.vim
deleted file mode 100644
index 213c956..0000000
--- a/session.vim
+++ /dev/null
@@ -1 +0,0 @@
-au BufWritePost *.rs silent!make ctags > /dev/null 2>&1
diff --git a/src/lib.rs b/src/lib.rs
index a25bab6..ea323ed 100644
--- a/src/lib.rs
+++ b/src/lib.rs
@@ -36,12 +36,9 @@
 ```
 */
 
-#![crate_name = "byteorder"]
-#![doc(html_root_url = "http://burntsushi.net/rustdoc/byteorder")]
-
+#![deny(missing_docs)]
 #![cfg_attr(not(feature = "std"), no_std)]
 
-#![deny(missing_docs)]
 
 #[cfg(feature = "std")]
 extern crate core;