From dc61f303ea68c91cc78893aa1915a14ca75aaa33 Mon Sep 17 00:00:00 2001 From: Alfie Fresta Date: Mon, 18 May 2026 20:53:50 +0100 Subject: [PATCH 1/3] chore(cargo): add SPDX license identifier and include README in the crate --- libwebauthn/Cargo.toml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/libwebauthn/Cargo.toml b/libwebauthn/Cargo.toml index a003df60..6b0db6af 100644 --- a/libwebauthn/Cargo.toml +++ b/libwebauthn/Cargo.toml @@ -4,7 +4,9 @@ description = "FIDO2 (WebAuthn) and FIDO U2F platform library for Linux written version = "0.5.0" authors = ["Alfie Fresta "] edition = "2021" +license = "LGPL-2.1-or-later" license-file = "../COPYING" +readme = "../README.md" homepage = "https://github.com/linux-credentials" repository = "https://github.com/linux-credentials/libwebauthn" resolver = "2" From 4e2b39d1f7180d49ef6f8e05d851cba2a584ac74 Mon Sep 17 00:00:00 2001 From: Alfie Fresta Date: Mon, 18 May 2026 20:54:16 +0100 Subject: [PATCH 2/3] chore(cargo): update author email --- libwebauthn/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libwebauthn/Cargo.toml b/libwebauthn/Cargo.toml index 6b0db6af..757dfec1 100644 --- a/libwebauthn/Cargo.toml +++ b/libwebauthn/Cargo.toml @@ -2,7 +2,7 @@ name = "libwebauthn" description = "FIDO2 (WebAuthn) and FIDO U2F platform library for Linux written in Rust " version = "0.5.0" -authors = ["Alfie Fresta "] +authors = ["Alfie Fresta "] edition = "2021" license = "LGPL-2.1-or-later" license-file = "../COPYING" From 6d3fa01d2151c205bd2add44daab3b2f2ea828ae Mon Sep 17 00:00:00 2001 From: Alfie Fresta Date: Mon, 18 May 2026 20:55:39 +0100 Subject: [PATCH 3/3] chore(cargo): credit Martin and Isaiah as authors --- libwebauthn/Cargo.toml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/libwebauthn/Cargo.toml b/libwebauthn/Cargo.toml index 757dfec1..66c1b100 100644 --- a/libwebauthn/Cargo.toml +++ b/libwebauthn/Cargo.toml @@ -2,7 +2,11 @@ name = "libwebauthn" description = "FIDO2 (WebAuthn) and FIDO U2F platform library for Linux written in Rust " version = "0.5.0" -authors = ["Alfie Fresta "] +authors = [ + "Alfie Fresta ", + "Martin Sirringhaus ", + "Isaiah Inuwa ", +] edition = "2021" license = "LGPL-2.1-or-later" license-file = "../COPYING"