Skip to content

Commit fe79d17

Browse files
authored
Merge pull request #81 from rust-random/remove-local-doc-links
Remove links to https://rust-random.github.io/rand/
2 parents abb3bd9 + 16af3b2 commit fe79d17

File tree

7 files changed

+0
-14
lines changed

7 files changed

+0
-14
lines changed

README.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22

33
[![Test Status](https://github.com/rust-random/rngs/actions/workflows/test.yml/badge.svg?event=push)](https://github.com/rust-random/rngs/actions)
44
[![Book](https://img.shields.io/badge/book-master-yellow.svg)](https://rust-random.github.io/book/)
5-
[![API](https://img.shields.io/badge/api-master-yellow.svg)](https://rust-random.github.io/rand)
65

76
Extra random number generators provided by the Rust Random project.
87
The main repository, [rust-random/rand](https://github.com/rust-random/rand),
@@ -12,7 +11,6 @@ This repository houses extra generators maintained by the project.
1211
Documentation:
1312
- [Our generators](https://rust-random.github.io/book/guide-rngs.html)
1413
- [The Rust Rand Book](https://rust-random.github.io/book)
15-
- [API reference (master)](https://rust-random.github.io/rand)
1614
- [API reference (docs.rs)](https://docs.rs/rand)
1715

1816

rand_hc/README.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@
33
[![Test Status](https://github.com/rust-random/rngs/actions/workflows/test.yml/badge.svg?event=push)](https://github.com/rust-random/rngs/actions)
44
[![Latest version](https://img.shields.io/crates/v/rand_hc.svg)](https://crates.io/crates/rand_hc)
55
[![Book](https://img.shields.io/badge/book-master-yellow.svg)](https://rust-random.github.io/book/)
6-
[![API](https://img.shields.io/badge/api-master-yellow.svg)](https://rust-random.github.io/rand/rand_hc)
76
[![API](https://docs.rs/rand_hc/badge.svg)](https://docs.rs/rand_hc)
87

98
A cryptographically secure random number generator that uses the HC-128
@@ -15,7 +14,6 @@ adoption" by eSTREAM[^2].
1514

1615
Links:
1716

18-
- [API documentation (master)](https://rust-random.github.io/rand/rand_hc)
1917
- [API documentation (docs.rs)](https://docs.rs/rand_hc)
2018
- [Changelog](https://github.com/rust-random/rngs/blob/master/rand_hc/CHANGELOG.md)
2119

rand_isaac/README.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@
33
[![Test Status](https://github.com/rust-random/rngs/actions/workflows/test.yml/badge.svg?event=push)](https://github.com/rust-random/rngs/actions)
44
[![Latest version](https://img.shields.io/crates/v/rand_isaac.svg)](https://crates.io/crates/rand_isaac)
55
[![Book](https://img.shields.io/badge/book-master-yellow.svg)](https://rust-random.github.io/book/)
6-
[![API](https://img.shields.io/badge/api-master-yellow.svg)](https://rust-random.github.io/rand/rand_isaac)
76
[![API](https://docs.rs/rand_isaac/badge.svg)](https://docs.rs/rand_isaac)
87

98
Implements the ISAAC and ISAAC-64 random number generators.
@@ -18,7 +17,6 @@ non-cryptographic applications.
1817

1918
Links:
2019

21-
- [API documentation (master)](https://rust-random.github.io/rand/rand_isaac)
2220
- [API documentation (docs.rs)](https://docs.rs/rand_isaac)
2321
- [Changelog](https://github.com/rust-random/rngs/blob/master/rand_isaac/CHANGELOG.md)
2422

rand_jitter/README.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@
33
[![Test Status](https://github.com/rust-random/rngs/actions/workflows/test.yml/badge.svg?event=push)](https://github.com/rust-random/rngs/actions)
44
[![Latest version](https://img.shields.io/crates/v/rand_jitter.svg)](https://crates.io/crates/rand_jitter)
55
[![Book](https://img.shields.io/badge/book-master-yellow.svg)](https://rust-random.github.io/book/)
6-
[![API](https://img.shields.io/badge/api-master-yellow.svg)](https://rust-random.github.io/rand/rand_jitter)
76
[![API](https://docs.rs/rand_jitter/badge.svg)](https://docs.rs/rand_jitter)
87

98
Non-physical true random number generator based on timing jitter.
@@ -21,7 +20,6 @@ entropy source. Unlike other Rand crates, this crate does not support `no_std`
2120

2221
Links:
2322

24-
- [API documentation (master)](https://rust-random.github.io/rand/rand_jitter)
2523
- [API documentation (docs.rs)](https://docs.rs/rand_jitter)
2624
- [Changelog](https://github.com/rust-random/rngs/blob/master/rand_jitter/CHANGELOG.md)
2725

rand_sfc/README.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@
33
[![Test Status](https://github.com/rust-random/rngs/actions/workflows/test.yml/badge.svg?event=push)](https://github.com/rust-random/rngs/actions)
44
[![Latest version](https://img.shields.io/crates/v/rand_sfc.svg)](https://crates.io/crates/rand_sfc)
55
[![Book](https://img.shields.io/badge/book-master-yellow.svg)](https://rust-random.github.io/book/)
6-
[![API](https://img.shields.io/badge/api-master-yellow.svg)](https://rust-random.github.io/rand/rand_sfc)
76
[![API](https://docs.rs/rand_sfc/badge.svg)](https://docs.rs/rand_sfc)
87

98
Rust implementation of the SFC random number generators, originally developed for the [PractRand](https://pracrand.sourceforge.net/) random number generator test suite.
@@ -13,7 +12,6 @@ part of the [Rand project](https://github.com/rust-random/rand).
1312

1413
Links:
1514

16-
- [API documentation (master)](https://rust-random.github.io/rand/rand_sfc)
1715
- [API documentation (docs.rs)](https://docs.rs/rand_sfc)
1816

1917
## Crate Features

rand_xorshift/README.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@
33
[![Test Status](https://github.com/rust-random/rngs/actions/workflows/test.yml/badge.svg?event=push)](https://github.com/rust-random/rngs/actions)
44
[![Latest version](https://img.shields.io/crates/v/rand_xorshift.svg)](https://crates.io/crates/rand_xorshift)
55
[![Book](https://img.shields.io/badge/book-master-yellow.svg)](https://rust-random.github.io/book/)
6-
[![API](https://img.shields.io/badge/api-master-yellow.svg)](https://rust-random.github.io/rand/rand_xorshift)
76
[![API](https://docs.rs/rand_xorshift/badge.svg)](https://docs.rs/rand_xorshift)
87

98
Implements the Xorshift random number generator.
@@ -18,7 +17,6 @@ requirements, use a more secure one such as `StdRng` or `OsRng`.
1817

1918
Links:
2019

21-
- [API documentation (master)](https://rust-random.github.io/rand/rand_xorshift)
2220
- [API documentation (docs.rs)](https://docs.rs/rand_xorshift)
2321
- [Changelog](https://github.com/rust-random/rngs/blob/master/rand_xorshift/CHANGELOG.md)
2422

rand_xoshiro/README.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@
33
[![Test Status](https://github.com/rust-random/rngs/actions/workflows/test.yml/badge.svg?event=push)](https://github.com/rust-random/rngs/actions)
44
[![Latest version](https://img.shields.io/crates/v/rand_xoshiro.svg)](https://crates.io/crates/rand_xoshiro)
55
[![Book](https://img.shields.io/badge/book-master-yellow.svg)](https://rust-random.github.io/book/)
6-
[![API](https://img.shields.io/badge/api-master-yellow.svg)](https://rust-random.github.io/rand/rand_xoshiro)
76
[![API](https://docs.rs/rand_xoshiro/badge.svg)](https://docs.rs/rand_xoshiro)
87

98
Rust implementation of the [xoshiro, xoroshiro and splitmix64](http://xoshiro.di.unimi.it) random number generators.
@@ -13,7 +12,6 @@ part of the [Rand project](https://github.com/rust-random/rand).
1312

1413
Links:
1514

16-
- [API documentation (master)](https://rust-random.github.io/rand/rand_xoshiro)
1715
- [API documentation (docs.rs)](https://docs.rs/rand_xoshiro)
1816
- [Changelog](https://github.com/rust-random/rngs/blob/master/rand_xoshiro/CHANGELOG.md)
1917

0 commit comments

Comments
 (0)