internals: Remove attribution from all files

As we did for the `bitcoin` crate, remove attribution from all files in
the `internals` crate.

While we are at it add an SPDX line to the few files missing it, whether
this license nonsense is even needed is left as an argument for another
day.

Justification:

Currently we have a mishmash of attribution lines accompanying the SPDX
identifier. These lines are basically meaningless because:

    - The date is often wrong
    - The original author attributed is not the only contributor to a file
    - The term "rust bitcoin developers" is basically just noise

Just remove all the attribution lines and be done with it.
This commit is contained in:
Tobin C. Harding 2023-05-01 09:31:42 +10:00
parent 99673ab5c4
commit 1c3bbd4bf2
No known key found for this signature in database
GPG Key ID: 40BF9E4C269D6607
6 changed files with 8 additions and 2 deletions

View File

@ -1,4 +1,3 @@
// Written by the Rust Bitcoin developers.
// SPDX-License-Identifier: CC0-1.0
//! # Error

View File

@ -1,3 +1,5 @@
// SPDX-License-Identifier: CC0-1.0
//! Implements a buffered encoder.
//!
//! The main type of this module is [`BufEncoder`] which provides buffered hex encoding. Such is

View File

@ -1,3 +1,5 @@
// SPDX-License-Identifier: CC0-1.0
//! Helpers for displaying bytes as hex strings.
//!
//! This module provides a trait for displaying things as hex as well as an implementation for

View File

@ -1,3 +1,5 @@
// SPDX-License-Identifier: CC0-1.0
//! Helpers for encoding bytes as hex strings.
pub mod buf_encoder;

View File

@ -1,4 +1,3 @@
// Written by the Rust Bitcoin developers.
// SPDX-License-Identifier: CC0-1.0
//! # Rust Bitcoin Internal

View File

@ -1,3 +1,5 @@
// SPDX-License-Identifier: CC0-1.0
//! Various macros used by the Rust Bitcoin ecosystem.
//!