From d291f71fd4e620d49a529d055fe17a2fdecafee8 Mon Sep 17 00:00:00 2001 From: Diggory Hardy Date: Thu, 16 Aug 2018 15:38:40 +0100 Subject: [PATCH] Add COPYRIGHT file and update copyright & licence notices --- COPYRIGHT | 12 ++++++++++++ benches/distributions.rs | 8 ++++++++ benches/generators.rs | 8 ++++++++ benches/misc.rs | 8 ++++++++ benches/seq.rs | 8 ++++++++ rand_core/src/block.rs | 4 +--- rand_core/src/error.rs | 4 +--- rand_core/src/impls.rs | 4 +--- rand_core/src/le.rs | 4 +--- rand_core/src/lib.rs | 1 + rand_isaac/src/lib.rs | 4 +--- rand_xorshift/src/lib.rs | 4 +--- src/deprecated.rs | 4 +--- src/distributions/bernoulli.rs | 5 ++--- src/distributions/binomial.rs | 4 +--- src/distributions/cauchy.rs | 4 +--- src/distributions/dirichlet.rs | 4 +--- src/distributions/float.rs | 4 +--- src/distributions/integer.rs | 4 +--- src/distributions/mod.rs | 1 + src/distributions/other.rs | 4 +--- src/distributions/pareto.rs | 4 +--- src/distributions/poisson.rs | 4 +--- src/distributions/triangular.rs | 4 +--- src/distributions/uniform.rs | 1 + src/distributions/unit_circle.rs | 8 ++++++++ src/distributions/unit_sphere.rs | 8 ++++++++ src/distributions/utils.rs | 4 +--- src/distributions/weibull.rs | 4 +--- src/distributions/weighted.rs | 4 +--- src/lib.rs | 1 + src/prelude.rs | 4 +--- src/prng/hc128.rs | 4 +--- src/prng/mod.rs | 4 +--- src/rngs/adapter/mod.rs | 4 +--- src/rngs/entropy.rs | 4 +--- src/rngs/jitter.rs | 4 +--- src/rngs/mock.rs | 4 +--- src/rngs/mod.rs | 4 +--- src/rngs/os.rs | 1 + src/rngs/small.rs | 4 +--- src/rngs/std.rs | 4 +--- src/rngs/thread.rs | 4 +--- src/seq/index.rs | 4 +--- src/seq/mod.rs | 4 +--- tests/uniformity.rs | 8 ++++++++ 46 files changed, 107 insertions(+), 99 deletions(-) create mode 100644 COPYRIGHT diff --git a/COPYRIGHT b/COPYRIGHT new file mode 100644 index 00000000..550ed111 --- /dev/null +++ b/COPYRIGHT @@ -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), Rust is +licensed under the Apache License, Version 2.0 or + or the MIT license + or , at your option. + +The Rand project includes code from the Rust project +published under these same licenses. diff --git a/benches/distributions.rs b/benches/distributions.rs index d5ead90d..3e3decab 100644 --- a/benches/distributions.rs +++ b/benches/distributions.rs @@ -1,3 +1,11 @@ +// Copyright 2018 Developers of the Rand project. +// +// Licensed under the Apache License, Version 2.0 or the MIT license +// , at your +// option. This file may not be copied, modified, or distributed +// except according to those terms. + #![feature(test)] #![cfg_attr(all(feature="i128_support", feature="nightly"), allow(stable_features))] // stable since 2018-03-27 #![cfg_attr(all(feature="i128_support", feature="nightly"), feature(i128_type, i128))] diff --git a/benches/generators.rs b/benches/generators.rs index edab6bf1..2c527d06 100644 --- a/benches/generators.rs +++ b/benches/generators.rs @@ -1,3 +1,11 @@ +// Copyright 2018 Developers of the Rand project. +// +// Licensed under the Apache License, Version 2.0 or the MIT license +// , at your +// option. This file may not be copied, modified, or distributed +// except according to those terms. + #![feature(test)] extern crate test; diff --git a/benches/misc.rs b/benches/misc.rs index 93a5c506..8fb3a832 100644 --- a/benches/misc.rs +++ b/benches/misc.rs @@ -1,3 +1,11 @@ +// Copyright 2018 Developers of the Rand project. +// +// Licensed under the Apache License, Version 2.0 or the MIT license +// , at your +// option. This file may not be copied, modified, or distributed +// except according to those terms. + #![feature(test)] extern crate test; diff --git a/benches/seq.rs b/benches/seq.rs index f1431317..21c71ecc 100644 --- a/benches/seq.rs +++ b/benches/seq.rs @@ -1,3 +1,11 @@ +// Copyright 2018 Developers of the Rand project. +// +// Licensed under the Apache License, Version 2.0 or the MIT license +// , at your +// option. This file may not be copied, modified, or distributed +// except according to those terms. + #![feature(test)] #![allow(non_snake_case)] diff --git a/rand_core/src/block.rs b/rand_core/src/block.rs index f8209e57..943a0200 100644 --- a/rand_core/src/block.rs +++ b/rand_core/src/block.rs @@ -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 or the MIT license diff --git a/rand_core/src/error.rs b/rand_core/src/error.rs index 594d3576..5a8459ea 100644 --- a/rand_core/src/error.rs +++ b/rand_core/src/error.rs @@ -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 or the MIT license diff --git a/rand_core/src/impls.rs b/rand_core/src/impls.rs index 439b46b8..57bdd070 100644 --- a/rand_core/src/impls.rs +++ b/rand_core/src/impls.rs @@ -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 or the MIT license diff --git a/rand_core/src/le.rs b/rand_core/src/le.rs index bcc560e2..266651f1 100644 --- a/rand_core/src/le.rs +++ b/rand_core/src/le.rs @@ -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 or the MIT license diff --git a/rand_core/src/lib.rs b/rand_core/src/lib.rs index 1b9c24c0..6f337395 100644 --- a/rand_core/src/lib.rs +++ b/rand_core/src/lib.rs @@ -1,3 +1,4 @@ +// Copyright 2018 Developers of the Rand project. // 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. diff --git a/rand_isaac/src/lib.rs b/rand_isaac/src/lib.rs index 70ae513c..fe70124c 100644 --- a/rand_isaac/src/lib.rs +++ b/rand_isaac/src/lib.rs @@ -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 or the MIT license diff --git a/rand_xorshift/src/lib.rs b/rand_xorshift/src/lib.rs index 53d0a739..c5ba0d86 100644 --- a/rand_xorshift/src/lib.rs +++ b/rand_xorshift/src/lib.rs @@ -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 or the MIT license diff --git a/src/deprecated.rs b/src/deprecated.rs index 2230fc1f..c144e1a6 100644 --- a/src/deprecated.rs +++ b/src/deprecated.rs @@ -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 or the MIT license diff --git a/src/distributions/bernoulli.rs b/src/distributions/bernoulli.rs index 76bf9247..f49618c6 100644 --- a/src/distributions/bernoulli.rs +++ b/src/distributions/bernoulli.rs @@ -1,12 +1,11 @@ -// 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 or the MIT license // , at your // option. This file may not be copied, modified, or distributed // except according to those terms. + //! The Bernoulli distribution. use Rng; diff --git a/src/distributions/binomial.rs b/src/distributions/binomial.rs index 1c232fa4..07f942d8 100644 --- a/src/distributions/binomial.rs +++ b/src/distributions/binomial.rs @@ -1,6 +1,4 @@ -// Copyright 2016-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 or the MIT license diff --git a/src/distributions/cauchy.rs b/src/distributions/cauchy.rs index 5ac55bd8..8bfca821 100644 --- a/src/distributions/cauchy.rs +++ b/src/distributions/cauchy.rs @@ -1,6 +1,4 @@ -// Copyright 2016-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 or the MIT license diff --git a/src/distributions/dirichlet.rs b/src/distributions/dirichlet.rs index 014d4ddc..60dc5c04 100644 --- a/src/distributions/dirichlet.rs +++ b/src/distributions/dirichlet.rs @@ -1,6 +1,4 @@ -// Copyright 2013 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 or the MIT license diff --git a/src/distributions/float.rs b/src/distributions/float.rs index d7a5bb98..ece12f57 100644 --- a/src/distributions/float.rs +++ b/src/distributions/float.rs @@ -1,6 +1,4 @@ -// Copyright 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 or the MIT license diff --git a/src/distributions/integer.rs b/src/distributions/integer.rs index 34f2fdef..f7713387 100644 --- a/src/distributions/integer.rs +++ b/src/distributions/integer.rs @@ -1,6 +1,4 @@ -// Copyright 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 or the MIT license diff --git a/src/distributions/mod.rs b/src/distributions/mod.rs index 91d45cbd..df223b0c 100644 --- a/src/distributions/mod.rs +++ b/src/distributions/mod.rs @@ -1,3 +1,4 @@ +// Copyright 2018 Developers of the Rand project. // 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. diff --git a/src/distributions/other.rs b/src/distributions/other.rs index dc5be044..2295f790 100644 --- a/src/distributions/other.rs +++ b/src/distributions/other.rs @@ -1,6 +1,4 @@ -// Copyright 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 or the MIT license diff --git a/src/distributions/pareto.rs b/src/distributions/pareto.rs index ba628e06..744a157f 100644 --- a/src/distributions/pareto.rs +++ b/src/distributions/pareto.rs @@ -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 or the MIT license diff --git a/src/distributions/poisson.rs b/src/distributions/poisson.rs index 1742f9e7..8aa15db5 100644 --- a/src/distributions/poisson.rs +++ b/src/distributions/poisson.rs @@ -1,6 +1,4 @@ -// Copyright 2016-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 or the MIT license diff --git a/src/distributions/triangular.rs b/src/distributions/triangular.rs index 27c5c59d..a6eef5c2 100644 --- a/src/distributions/triangular.rs +++ b/src/distributions/triangular.rs @@ -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 or the MIT license diff --git a/src/distributions/uniform.rs b/src/distributions/uniform.rs index 41e76b09..78cfe3ba 100644 --- a/src/distributions/uniform.rs +++ b/src/distributions/uniform.rs @@ -1,3 +1,4 @@ +// Copyright 2018 Developers of the Rand project. // Copyright 2017 The Rust Project Developers. See the COPYRIGHT // file at the top-level directory of this distribution and at // https://rust-lang.org/COPYRIGHT. diff --git a/src/distributions/unit_circle.rs b/src/distributions/unit_circle.rs index a1cf66ae..7093fb3e 100644 --- a/src/distributions/unit_circle.rs +++ b/src/distributions/unit_circle.rs @@ -1,3 +1,11 @@ +// Copyright 2018 Developers of the Rand project. +// +// Licensed under the Apache License, Version 2.0 or the MIT license +// , at your +// option. This file may not be copied, modified, or distributed +// except according to those terms. + use Rng; use distributions::{Distribution, Uniform}; diff --git a/src/distributions/unit_sphere.rs b/src/distributions/unit_sphere.rs index 039e1f6c..a8ebc8bb 100644 --- a/src/distributions/unit_sphere.rs +++ b/src/distributions/unit_sphere.rs @@ -1,3 +1,11 @@ +// Copyright 2018 Developers of the Rand project. +// +// Licensed under the Apache License, Version 2.0 or the MIT license +// , at your +// option. This file may not be copied, modified, or distributed +// except according to those terms. + use Rng; use distributions::{Distribution, Uniform}; diff --git a/src/distributions/utils.rs b/src/distributions/utils.rs index 4f541ee8..5e8d6b1d 100644 --- a/src/distributions/utils.rs +++ b/src/distributions/utils.rs @@ -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 or the MIT license diff --git a/src/distributions/weibull.rs b/src/distributions/weibull.rs index 46f99849..5fbe10ae 100644 --- a/src/distributions/weibull.rs +++ b/src/distributions/weibull.rs @@ -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 or the MIT license diff --git a/src/distributions/weighted.rs b/src/distributions/weighted.rs index 33a4071d..eb8227b2 100644 --- a/src/distributions/weighted.rs +++ b/src/distributions/weighted.rs @@ -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 or the MIT license diff --git a/src/lib.rs b/src/lib.rs index c2bcfd56..b243ae63 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -1,3 +1,4 @@ +// Copyright 2018 Developers of the Rand project. // 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. diff --git a/src/prelude.rs b/src/prelude.rs index ace5c89d..5d8a0e9b 100644 --- a/src/prelude.rs +++ b/src/prelude.rs @@ -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 or the MIT license diff --git a/src/prng/hc128.rs b/src/prng/hc128.rs index 5aa2d243..67005fb8 100644 --- a/src/prng/hc128.rs +++ b/src/prng/hc128.rs @@ -1,6 +1,4 @@ -// Copyright 2017 The Rust Project Developers. See the COPYRIGHT -// file at the top-level directory of this distribution and at -// https://www.rust-lang.org/COPYRIGHT. +// Copyright 2018 Developers of the Rand project. // // Licensed under the Apache License, Version 2.0 or the MIT license diff --git a/src/prng/mod.rs b/src/prng/mod.rs index ebc219cb..68479faf 100644 --- a/src/prng/mod.rs +++ b/src/prng/mod.rs @@ -1,6 +1,4 @@ -// Copyright 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 or the MIT license diff --git a/src/rngs/adapter/mod.rs b/src/rngs/adapter/mod.rs index 9a3851ae..60b832e9 100644 --- a/src/rngs/adapter/mod.rs +++ b/src/rngs/adapter/mod.rs @@ -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 or the MIT license diff --git a/src/rngs/entropy.rs b/src/rngs/entropy.rs index 0f85596d..8736324a 100644 --- a/src/rngs/entropy.rs +++ b/src/rngs/entropy.rs @@ -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 or the MIT license diff --git a/src/rngs/jitter.rs b/src/rngs/jitter.rs index 292aae99..3e93477d 100644 --- a/src/rngs/jitter.rs +++ b/src/rngs/jitter.rs @@ -1,6 +1,4 @@ -// Copyright 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 or the MIT license diff --git a/src/rngs/mock.rs b/src/rngs/mock.rs index 812e4beb..3c9a994e 100644 --- a/src/rngs/mock.rs +++ b/src/rngs/mock.rs @@ -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 or the MIT license diff --git a/src/rngs/mod.rs b/src/rngs/mod.rs index f16ee545..3c8de068 100644 --- a/src/rngs/mod.rs +++ b/src/rngs/mod.rs @@ -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 or the MIT license diff --git a/src/rngs/os.rs b/src/rngs/os.rs index ae90261f..4c194c6d 100644 --- a/src/rngs/os.rs +++ b/src/rngs/os.rs @@ -1,3 +1,4 @@ +// Copyright 2018 Developers of the Rand project. // Copyright 2013-2015 The Rust Project Developers. See the COPYRIGHT // file at the top-level directory of this distribution and at // https://rust-lang.org/COPYRIGHT. diff --git a/src/rngs/small.rs b/src/rngs/small.rs index 9f13cb04..8197a64f 100644 --- a/src/rngs/small.rs +++ b/src/rngs/small.rs @@ -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 or the MIT license diff --git a/src/rngs/std.rs b/src/rngs/std.rs index 1451f763..74a69fb4 100644 --- a/src/rngs/std.rs +++ b/src/rngs/std.rs @@ -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 or the MIT license diff --git a/src/rngs/thread.rs b/src/rngs/thread.rs index c6611db9..d6931881 100644 --- a/src/rngs/thread.rs +++ b/src/rngs/thread.rs @@ -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 or the MIT license diff --git a/src/seq/index.rs b/src/seq/index.rs index 02a3d944..e273f561 100644 --- a/src/seq/index.rs +++ b/src/seq/index.rs @@ -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 or the MIT license diff --git a/src/seq/mod.rs b/src/seq/mod.rs index 4e06bac2..88c8eba4 100644 --- a/src/seq/mod.rs +++ b/src/seq/mod.rs @@ -1,6 +1,4 @@ -// Copyright 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 or the MIT license diff --git a/tests/uniformity.rs b/tests/uniformity.rs index a39026bc..b8f74a62 100644 --- a/tests/uniformity.rs +++ b/tests/uniformity.rs @@ -1,3 +1,11 @@ +// Copyright 2018 Developers of the Rand project. +// +// Licensed under the Apache License, Version 2.0 or the MIT license +// , at your +// option. This file may not be copied, modified, or distributed +// except according to those terms. + #![cfg(feature = "std")] #[macro_use]