Update repo and doc links
This commit is contained in:
parent
327ef3bc92
commit
b4026b9fec
|
@ -26,7 +26,7 @@ after_success: |
|
||||||
eval "$(ssh-agent -s)" &&
|
eval "$(ssh-agent -s)" &&
|
||||||
ssh-add .travis/deploy &&
|
ssh-add .travis/deploy &&
|
||||||
pip install ghp-import --user $USER &&
|
pip install ghp-import --user $USER &&
|
||||||
cp doc/index.html target/doc/ &&
|
cp doc/* target/doc/ &&
|
||||||
$HOME/.local/bin/ghp-import -n target/doc &&
|
$HOME/.local/bin/ghp-import -n target/doc &&
|
||||||
git push -qf ssh://git@github.com/${TRAVIS_REPO_SLUG}.git gh-pages
|
git push -qf ssh://git@github.com/${TRAVIS_REPO_SLUG}.git gh-pages
|
||||||
notifications:
|
notifications:
|
||||||
|
|
|
@ -4,9 +4,9 @@ name = "num"
|
||||||
version = "0.1.27"
|
version = "0.1.27"
|
||||||
authors = ["The Rust Project Developers"]
|
authors = ["The Rust Project Developers"]
|
||||||
license = "MIT/Apache-2.0"
|
license = "MIT/Apache-2.0"
|
||||||
homepage = "https://github.com/rust-lang/num"
|
homepage = "https://github.com/rust-num/num"
|
||||||
repository = "https://github.com/rust-lang/num"
|
repository = "https://github.com/rust-num/num"
|
||||||
documentation = "http://doc.rust-lang.org/num"
|
documentation = "http://rust-num.github.io/num"
|
||||||
keywords = ["mathematics", "numerics"]
|
keywords = ["mathematics", "numerics"]
|
||||||
description = """
|
description = """
|
||||||
Simple numerics. This crate contains basic arbitrary-sized integer,
|
Simple numerics. This crate contains basic arbitrary-sized integer,
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
|
|
||||||
Arbitrary sized numeric types for Rust.
|
Arbitrary sized numeric types for Rust.
|
||||||
|
|
||||||
[Documentation](http://doc.rust-lang.org/num)
|
[Documentation](http://rust-num.github.io/num)
|
||||||
|
|
||||||
## Usage
|
## Usage
|
||||||
|
|
||||||
|
|
Binary file not shown.
After Width: | Height: | Size: 23 KiB |
Binary file not shown.
After Width: | Height: | Size: 5.6 KiB |
|
@ -3,9 +3,9 @@ name = "num-macros"
|
||||||
version = "0.1.27"
|
version = "0.1.27"
|
||||||
authors = ["The Rust Project Developers"]
|
authors = ["The Rust Project Developers"]
|
||||||
license = "MIT/Apache-2.0"
|
license = "MIT/Apache-2.0"
|
||||||
homepage = "https://github.com/rust-lang/num"
|
homepage = "https://github.com/rust-num/num"
|
||||||
repository = "https://github.com/rust-lang/num"
|
repository = "https://github.com/rust-num/num"
|
||||||
documentation = "http://doc.rust-lang.org/num"
|
documentation = "http://rust-num.github.io/num"
|
||||||
keywords = ["mathematics", "numerics"]
|
keywords = ["mathematics", "numerics"]
|
||||||
description = """
|
description = """
|
||||||
Numeric syntax extensions.
|
Numeric syntax extensions.
|
||||||
|
|
|
@ -48,9 +48,9 @@
|
||||||
//! ```
|
//! ```
|
||||||
//!
|
//!
|
||||||
//! [newt]: https://en.wikipedia.org/wiki/Methods_of_computing_square_roots#Babylonian_method
|
//! [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",
|
#![doc(html_logo_url = "http://rust-num.github.io/num/rust-logo-128x128-blk-v2.png",
|
||||||
html_favicon_url = "http://www.rust-lang.org/favicon.ico",
|
html_favicon_url = "http://rust-num.github.io/num/favicon.ico",
|
||||||
html_root_url = "http://doc.rust-lang.org/num/",
|
html_root_url = "http://rust-num.github.io/num/",
|
||||||
html_playground_url = "http://play.rust-lang.org/")]
|
html_playground_url = "http://play.rust-lang.org/")]
|
||||||
|
|
||||||
#[cfg(feature = "rustc-serialize")]
|
#[cfg(feature = "rustc-serialize")]
|
||||||
|
|
Loading…
Reference in New Issue