about summary refs log tree commit diff stats
path: root/crates/colors/src
diff options
context:
space:
mode:
authorBenedikt Peetz <benedikt.peetz@b-peetz.de>2025-07-24 17:15:22 +0200
committerBenedikt Peetz <benedikt.peetz@b-peetz.de>2025-07-24 17:15:22 +0200
commit71351b83af2cfb142ad536936f613a66059244f6 (patch)
tree7dcbbb632d4c18485509bcd3caaf3bde0db75b5b /crates/colors/src
parenttest(crates/libmpv2): Avoid compiling a doc-test (diff)
downloadyt-71351b83af2cfb142ad536936f613a66059244f6.zip
chore(treewide): Add missing license headers
Diffstat (limited to 'crates/colors/src')
-rw-r--r--crates/colors/src/custom.rs10
-rw-r--r--crates/colors/src/lib.rs10
-rw-r--r--crates/colors/src/list.rs10
-rw-r--r--crates/colors/src/support.rs10
4 files changed, 40 insertions, 0 deletions
diff --git a/crates/colors/src/custom.rs b/crates/colors/src/custom.rs
index 2adcfa9..fd6b7b3 100644
--- a/crates/colors/src/custom.rs
+++ b/crates/colors/src/custom.rs
@@ -1,3 +1,13 @@
+// yt - A fully featured command line YouTube client
+//
+// Copyright (C) 2025 Benedikt Peetz <benedikt.peetz@b-peetz.de>
+// SPDX-License-Identifier: GPL-3.0-or-later
+//
+// This file is part of Yt.
+//
+// You should have received a copy of the License along with this program.
+// If not, see <https://www.gnu.org/licenses/gpl-3.0.txt>.
+
 // Taken from <https://github.com/owo-colors/owo-colors/blob/61f8bba2f5f80e9f4fa600fbfdf2c21656f1d523/src/colors/custom.rs>
 // at 2025-07-16T18:05:55 CEST.
 
diff --git a/crates/colors/src/lib.rs b/crates/colors/src/lib.rs
index 71a5f34..663e19a 100644
--- a/crates/colors/src/lib.rs
+++ b/crates/colors/src/lib.rs
@@ -1,3 +1,13 @@
+// yt - A fully featured command line YouTube client
+//
+// Copyright (C) 2025 Benedikt Peetz <benedikt.peetz@b-peetz.de>
+// SPDX-License-Identifier: GPL-3.0-or-later
+//
+// This file is part of Yt.
+//
+// You should have received a copy of the License along with this program.
+// If not, see <https://www.gnu.org/licenses/gpl-3.0.txt>.
+
 use std::fmt::{Display, Write};
 
 use crate::{
diff --git a/crates/colors/src/list.rs b/crates/colors/src/list.rs
index ecbe465..35fcb83 100644
--- a/crates/colors/src/list.rs
+++ b/crates/colors/src/list.rs
@@ -1,3 +1,13 @@
+// yt - A fully featured command line YouTube client
+//
+// Copyright (C) 2025 Benedikt Peetz <benedikt.peetz@b-peetz.de>
+// SPDX-License-Identifier: GPL-3.0-or-later
+//
+// This file is part of Yt.
+//
+// You should have received a copy of the License along with this program.
+// If not, see <https://www.gnu.org/licenses/gpl-3.0.txt>.
+
 use crate::support::prepend_input;
 
 prepend_input! {
diff --git a/crates/colors/src/support.rs b/crates/colors/src/support.rs
index b42ce5d..3c3f87d 100644
--- a/crates/colors/src/support.rs
+++ b/crates/colors/src/support.rs
@@ -1,3 +1,13 @@
+// yt - A fully featured command line YouTube client
+//
+// Copyright (C) 2025 Benedikt Peetz <benedikt.peetz@b-peetz.de>
+// SPDX-License-Identifier: GPL-3.0-or-later
+//
+// This file is part of Yt.
+//
+// You should have received a copy of the License along with this program.
+// If not, see <https://www.gnu.org/licenses/gpl-3.0.txt>.
+
 pub(super) const CSI: &str = "\x1b[";
 pub(super) const CSE: &str = "m";