Set html_root_url to docs.rs

This commit is contained in:
David Tolnay 2017-08-22 19:50:16 -07:00
parent 403f3bd915
commit 0ac0d9c4aa
No known key found for this signature in database
GPG Key ID: F9BA143B95FF6D82
2 changed files with 3 additions and 1 deletions

View File

@ -1,6 +1,6 @@
[package]
name = "itoa"
version = "0.3.1"
version = "0.3.1" # remember to update html_root_url
authors = ["David Tolnay <dtolnay@gmail.com>"]
license = "MIT/Apache-2.0"
description = "Fast functions for printing integer primitives to an io::Write"

View File

@ -6,6 +6,8 @@
// option. This file may not be copied, modified, or distributed
// except according to those terms.
#![doc(html_root_url = "https://docs.rs/itoa/0.3.1")]
use std::{io, mem, ptr, slice};
#[inline]