Update repo and doc links

This commit is contained in:
Josh Stone 2015-11-12 18:40:13 -08:00
parent 327ef3bc92
commit b4026b9fec
7 changed files with 11 additions and 11 deletions

View File

@ -26,7 +26,7 @@ after_success: |
eval "$(ssh-agent -s)" &&
ssh-add .travis/deploy &&
pip install ghp-import --user $USER &&
cp doc/index.html target/doc/ &&
cp doc/* target/doc/ &&
$HOME/.local/bin/ghp-import -n target/doc &&
git push -qf ssh://git@github.com/${TRAVIS_REPO_SLUG}.git gh-pages
notifications:

View File

@ -4,9 +4,9 @@ name = "num"
version = "0.1.27"
authors = ["The Rust Project Developers"]
license = "MIT/Apache-2.0"
homepage = "https://github.com/rust-lang/num"
repository = "https://github.com/rust-lang/num"
documentation = "http://doc.rust-lang.org/num"
homepage = "https://github.com/rust-num/num"
repository = "https://github.com/rust-num/num"
documentation = "http://rust-num.github.io/num"
keywords = ["mathematics", "numerics"]
description = """
Simple numerics. This crate contains basic arbitrary-sized integer,

View File

@ -2,7 +2,7 @@
Arbitrary sized numeric types for Rust.
[Documentation](http://doc.rust-lang.org/num)
[Documentation](http://rust-num.github.io/num)
## Usage

BIN
doc/favicon.ico Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 23 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.6 KiB

View File

@ -3,9 +3,9 @@ name = "num-macros"
version = "0.1.27"
authors = ["The Rust Project Developers"]
license = "MIT/Apache-2.0"
homepage = "https://github.com/rust-lang/num"
repository = "https://github.com/rust-lang/num"
documentation = "http://doc.rust-lang.org/num"
homepage = "https://github.com/rust-num/num"
repository = "https://github.com/rust-num/num"
documentation = "http://rust-num.github.io/num"
keywords = ["mathematics", "numerics"]
description = """
Numeric syntax extensions.

View File

@ -48,9 +48,9 @@
//! ```
//!
//! [newt]: https://en.wikipedia.org/wiki/Methods_of_computing_square_roots#Babylonian_method
#![doc(html_logo_url = "http://www.rust-lang.org/logos/rust-logo-128x128-blk-v2.png",
html_favicon_url = "http://www.rust-lang.org/favicon.ico",
html_root_url = "http://doc.rust-lang.org/num/",
#![doc(html_logo_url = "http://rust-num.github.io/num/rust-logo-128x128-blk-v2.png",
html_favicon_url = "http://rust-num.github.io/num/favicon.ico",
html_root_url = "http://rust-num.github.io/num/",
html_playground_url = "http://play.rust-lang.org/")]
#[cfg(feature = "rustc-serialize")]