Backport changes from master
This commit is contained in:
parent
24fbd1f9f8
commit
459571ce2a
12
rand_core/COPYRIGHT
Normal file
12
rand_core/COPYRIGHT
Normal file
@ -0,0 +1,12 @@
|
||||
Copyrights in the Rand project are retained by their contributors. No
|
||||
copyright assignment is required to contribute to the Rand project.
|
||||
|
||||
For full authorship information, see the version control history.
|
||||
|
||||
Except as otherwise noted (below and/or in individual files), Rand is
|
||||
licensed under the Apache License, Version 2.0 <LICENSE-APACHE> or
|
||||
<http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
|
||||
<LICENSE-MIT> or <http://opensource.org/licenses/MIT>, at your option.
|
||||
|
||||
The Rand project includes code from the Rust project
|
||||
published under these same licenses.
|
@ -4,7 +4,7 @@ version = "0.2.1" # NB: When modifying, also modify html_root_url in lib.rs
|
||||
authors = ["The Rust Project Developers"]
|
||||
license = "MIT/Apache-2.0"
|
||||
readme = "README.md"
|
||||
repository = "https://github.com/rust-lang-nursery/rand"
|
||||
repository = "https://github.com/rust-random/rand"
|
||||
documentation = "https://docs.rs/rand_core"
|
||||
homepage = "https://crates.io/crates/rand_core"
|
||||
description = """
|
||||
@ -14,8 +14,8 @@ keywords = ["random", "rng"]
|
||||
categories = ["algorithms", "no-std"]
|
||||
|
||||
[badges]
|
||||
travis-ci = { repository = "rust-lang-nursery/rand" }
|
||||
appveyor = { repository = "alexcrichton/rand" }
|
||||
travis-ci = { repository = "rust-random/rand" }
|
||||
appveyor = { repository = "dhardy/rand" }
|
||||
|
||||
[features]
|
||||
default = ["std"]
|
||||
|
@ -1,10 +1,11 @@
|
||||
# rand_core
|
||||
|
||||
[](https://travis-ci.org/rust-lang-nursery/rand)
|
||||
[](https://ci.appveyor.com/project/alexcrichton/rand)
|
||||
[](https://travis-ci.org/rust-random/rand)
|
||||
[](https://ci.appveyor.com/project/dhardy/rand)
|
||||
[](https://crates.io/crates/rand_core)
|
||||
[](https://docs.rs/rand_core)
|
||||
[](https://github.com/rust-lang-nursery/rand#rust-version-requirements)
|
||||
[](https://github.com/rust-random/rand#rust-version-requirements)
|
||||
[](https://github.com/rust-random/rand/tree/master/rand_core#license)
|
||||
|
||||
Core traits and error types of the [rand] library, plus tools for implementing
|
||||
RNGs.
|
||||
@ -20,7 +21,7 @@ point, list permutations and secure initialisation of RNGs). Most users should
|
||||
prefer to use the main [rand] crate.
|
||||
|
||||
Documentation:
|
||||
[master branch](https://rust-lang-nursery.github.io/rand/rand_core/index.html),
|
||||
[master branch](https://rust-random.github.io/rand/rand_core/index.html),
|
||||
[by release](https://docs.rs/rand_core)
|
||||
|
||||
[Changelog](CHANGELOG.md)
|
||||
@ -59,4 +60,5 @@ implementations that use the `BlockRng` or `BlockRng64` wrappers.
|
||||
`rand_core` is distributed under the terms of both the MIT license and the
|
||||
Apache License (Version 2.0).
|
||||
|
||||
See [LICENSE-APACHE](LICENSE-APACHE) and [LICENSE-MIT](LICENSE-MIT) for details.
|
||||
See [LICENSE-APACHE](LICENSE-APACHE) and [LICENSE-MIT](LICENSE-MIT), and
|
||||
[COPYRIGHT](COPYRIGHT) for details.
|
||||
|
@ -1,6 +1,4 @@
|
||||
// Copyright 2018 The Rust Project Developers. See the COPYRIGHT
|
||||
// file at the top-level directory of this distribution and at
|
||||
// https://rust-lang.org/COPYRIGHT.
|
||||
// Copyright 2018 Developers of the Rand project.
|
||||
//
|
||||
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
|
||||
// https://www.apache.org/licenses/LICENSE-2.0> or the MIT license
|
||||
|
@ -1,6 +1,4 @@
|
||||
// Copyright 2017-2018 The Rust Project Developers. See the COPYRIGHT
|
||||
// file at the top-level directory of this distribution and at
|
||||
// https://rust-lang.org/COPYRIGHT.
|
||||
// Copyright 2018 Developers of the Rand project.
|
||||
//
|
||||
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
|
||||
// https://www.apache.org/licenses/LICENSE-2.0> or the MIT license
|
||||
|
@ -1,6 +1,4 @@
|
||||
// Copyright 2013-2017 The Rust Project Developers. See the COPYRIGHT
|
||||
// file at the top-level directory of this distribution and at
|
||||
// https://rust-lang.org/COPYRIGHT.
|
||||
// Copyright 2018 Developers of the Rand project.
|
||||
//
|
||||
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
|
||||
// https://www.apache.org/licenses/LICENSE-2.0> or the MIT license
|
||||
|
@ -1,6 +1,4 @@
|
||||
// Copyright 2017-2018 The Rust Project Developers. See the COPYRIGHT
|
||||
// file at the top-level directory of this distribution and at
|
||||
// https://rust-lang.org/COPYRIGHT.
|
||||
// Copyright 2018 Developers of the Rand project.
|
||||
//
|
||||
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
|
||||
// https://www.apache.org/licenses/LICENSE-2.0> or the MIT license
|
||||
|
@ -1,6 +1,5 @@
|
||||
// Copyright 2017-2018 The Rust Project Developers. See the COPYRIGHT
|
||||
// file at the top-level directory of this distribution and at
|
||||
// https://rust-lang.org/COPYRIGHT.
|
||||
// Copyright 2018 Developers of the Rand project.
|
||||
// Copyright 2017-2018 The Rust Project Developers.
|
||||
//
|
||||
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
|
||||
// https://www.apache.org/licenses/LICENSE-2.0> or the MIT license
|
||||
|
Loading…
x
Reference in New Issue
Block a user