Skip to content

Commit 4d22ab2

Browse files
authored
Remove license headers from source files (#25)
The LICENSE files and the `license` field are sufficient for license attribution. Additionally, removes attribution of the Rust project since the crate does not contain any code from it anymore.
1 parent 8007948 commit 4d22ab2

File tree

6 files changed

+2
-31
lines changed

6 files changed

+2
-31
lines changed

COPYRIGHT

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,3 @@ Except as otherwise noted (below and/or in individual files), Rand is
77
licensed under the Apache License, Version 2.0 <LICENSE-APACHE> or
88
<http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
99
<LICENSE-MIT> or <http://opensource.org/licenses/MIT>, at your option.
10-
11-
The Rand project includes code from the Rust project
12-
published under these same licenses.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "rand_core"
33
version = "0.10.0-rc-2"
4-
authors = ["The Rand Project Developers", "The Rust Project Developers"]
4+
authors = ["The Rand Project Developers"]
55
license = "MIT OR Apache-2.0"
66
readme = "README.md"
77
repository = "https://github.com/rust-random/rand_core"

LICENSE-MIT

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
1-
Copyright 2018 Developers of the Rand project
2-
Copyright (c) 2014 The Rust Project Developers
1+
Copyright (c) 2018-2025 The Rand Project Developers
32

43
Permission is hereby granted, free of charge, to any
54
person obtaining a copy of this software and associated

src/block.rs

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,3 @@
1-
// Copyright 2018 Developers of the Rand project.
2-
//
3-
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
4-
// https://www.apache.org/licenses/LICENSE-2.0> or the MIT license
5-
// <LICENSE-MIT or https://opensource.org/licenses/MIT>, at your
6-
// option. This file may not be copied, modified, or distributed
7-
// except according to those terms.
8-
91
//! The `BlockRngCore` trait and implementation helpers
102
//!
113
//! The [`BlockRngCore`] trait exists to assist in the implementation of RNGs

src/le.rs

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,3 @@
1-
// Copyright 2018 Developers of the Rand project.
2-
//
3-
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
4-
// https://www.apache.org/licenses/LICENSE-2.0> or the MIT license
5-
// <LICENSE-MIT or https://opensource.org/licenses/MIT>, at your
6-
// option. This file may not be copied, modified, or distributed
7-
// except according to those terms.
8-
91
//! # Little-Endian utilities
102
//!
113
//! For cross-platform reproducibility, Little-Endian order (least-significant

src/lib.rs

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,3 @@
1-
// Copyright 2018 Developers of the Rand project.
2-
// Copyright 2017-2018 The Rust Project Developers.
3-
//
4-
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
5-
// https://www.apache.org/licenses/LICENSE-2.0> or the MIT license
6-
// <LICENSE-MIT or https://opensource.org/licenses/MIT>, at your
7-
// option. This file may not be copied, modified, or distributed
8-
// except according to those terms.
9-
101
//! Random number generation traits
112
//!
123
//! This crate is mainly of interest to crates publishing implementations of

0 commit comments

Comments
 (0)