diff --git a/COPYRIGHT b/COPYRIGHT index 468d907c..6bb2c641 100644 --- a/COPYRIGHT +++ b/COPYRIGHT @@ -7,6 +7,3 @@ Except as otherwise noted (below and/or in individual files), Rand 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/Cargo.toml b/Cargo.toml index 3f979cc7..22f66d0a 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "rand_core" version = "0.10.0-rc-2" -authors = ["The Rand Project Developers", "The Rust Project Developers"] +authors = ["The Rand Project Developers"] license = "MIT OR Apache-2.0" readme = "README.md" repository = "https://github.com/rust-random/rand_core" diff --git a/LICENSE-MIT b/LICENSE-MIT index d93b5baf..e053f10f 100644 --- a/LICENSE-MIT +++ b/LICENSE-MIT @@ -1,5 +1,4 @@ -Copyright 2018 Developers of the Rand project -Copyright (c) 2014 The Rust Project Developers +Copyright (c) 2018-2025 The Rand Project Developers Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated diff --git a/src/block.rs b/src/block.rs index 16fc4545..b9c722ab 100644 --- a/src/block.rs +++ b/src/block.rs @@ -1,11 +1,3 @@ -// 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 `BlockRngCore` trait and implementation helpers //! //! The [`BlockRngCore`] trait exists to assist in the implementation of RNGs diff --git a/src/le.rs b/src/le.rs index fae444cf..e42c572d 100644 --- a/src/le.rs +++ b/src/le.rs @@ -1,11 +1,3 @@ -// 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. - //! # Little-Endian utilities //! //! For cross-platform reproducibility, Little-Endian order (least-significant diff --git a/src/lib.rs b/src/lib.rs index 13d53628..a73dadd1 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -1,12 +1,3 @@ -// Copyright 2018 Developers of the Rand project. -// Copyright 2017-2018 The Rust Project Developers. -// -// 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. - //! Random number generation traits //! //! This crate is mainly of interest to crates publishing implementations of