deps: update to quickcheck 0.7
Our dev-dependencies already pushed us over the minimum Rust version
supported (1.12.0), so we continue with the status quo of only testing
on stable/beta/nightly, but ensure that we continue to build on Rust
1.12.0.
diff --git a/Cargo.toml b/Cargo.toml
index ea66751..3afd004 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -1,6 +1,5 @@
[package]
name = "byteorder"
-# NB: When modifying, also modify html_root_url in lib.rs
version = "1.2.4" #:version
authors = ["Andrew Gallant <jamslam@gmail.com>"]
description = "Library for reading/writing numbers in big-endian and little-endian."
@@ -17,8 +16,8 @@
bench = false
[dev-dependencies]
-quickcheck = { version = "0.6", default-features = false }
-rand = "0.4"
+quickcheck = { version = "0.7", default-features = false }
+rand = "0.5"
[features]
default = ["std"]
diff --git a/src/lib.rs b/src/lib.rs
index 712ce64..fe3808f 100644
--- a/src/lib.rs
+++ b/src/lib.rs
@@ -63,7 +63,6 @@
#![deny(missing_docs)]
#![cfg_attr(not(feature = "std"), no_std)]
-#![doc(html_root_url = "https://docs.rs/byteorder/1.2.1")]
#[cfg(feature = "std")]
extern crate core;