aboutsummaryrefslogtreecommitdiff
path: root/src/lib.rs
diff options
context:
space:
mode:
authorAndrew Gallant <jamslam@gmail.com>2016-12-30 12:12:22 -0500
committerAndrew Gallant <jamslam@gmail.com>2016-12-30 12:12:22 -0500
commit1ee962d0ac501f96d77c90061549a64ecb07f96a (patch)
tree412ac4bfdfe39413019570850dac6004da1fe002 /src/lib.rs
parentd0df2d0dba2ef7a42d2c97c1975d8c6410f3a16c (diff)
downloadbyteorder-1ee962d0ac501f96d77c90061549a64ecb07f96a.tar.gz
Prepare for 1.0, switch to docs.rs.
Fixes #57
Diffstat (limited to 'src/lib.rs')
-rw-r--r--src/lib.rs5
1 files changed, 1 insertions, 4 deletions
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 @@ assert_eq!(wtr, vec![5, 2, 0, 3]);
```
*/
-#![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;