From 7c178eb6d452c4490c0bb9cbcada5b5deb9f4f57 Mon Sep 17 00:00:00 2001 From: cel 🌸 Date: Mon, 24 Nov 2025 01:23:08 +0100 Subject: feat: add licensing and related annotations/file headers --- jid/Cargo.toml | 4 ++++ jid/src/lib.rs | 4 ++++ 2 files changed, 8 insertions(+) (limited to 'jid') diff --git a/jid/Cargo.toml b/jid/Cargo.toml index 58d59a4..1c3aefd 100644 --- a/jid/Cargo.toml +++ b/jid/Cargo.toml @@ -1,3 +1,7 @@ +# SPDX-FileCopyrightText: 2025 cel +# +# SPDX-License-Identifier: AGPL-3.0-or-later + [package] name = "jid" version = "0.1.0" diff --git a/jid/src/lib.rs b/jid/src/lib.rs index 3b40094..9d21382 100644 --- a/jid/src/lib.rs +++ b/jid/src/lib.rs @@ -1,3 +1,7 @@ +// SPDX-FileCopyrightText: 2025 cel +// +// SPDX-License-Identifier: AGPL-3.0-or-later + use std::{borrow::Cow, error::Error, fmt::Display, ops::Deref, str::FromStr}; // #[cfg(feature = "sqlx")] -- cgit