Skip to content

Commit

Permalink
Add html_root_url to lib.rs. Fixes BurntSushi#77
Browse files Browse the repository at this point in the history
  • Loading branch information
brson committed Mar 4, 2017
1 parent d2bba7f commit 5828f04
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
1 change: 1 addition & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
[package]
name = "byteorder"
// NB: When modifying, also modify html_root_url in lib.rs
version = "1.0.0" #:version
authors = ["Andrew Gallant <jamslam@gmail.com>"]
description = "Library for reading/writing numbers in big-endian and little-endian."
Expand Down
1 change: 1 addition & 0 deletions src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,7 @@ assert_eq!(wtr, vec![5, 2, 0, 3]);

#![deny(missing_docs)]
#![cfg_attr(not(feature = "std"), no_std)]
#![doc(html_root_url = "https://docs.rs/byteorder/1.0.0")]

#[cfg(feature = "std")]
extern crate core;
Expand Down

0 comments on commit 5828f04

Please sign in to comment.