From a23eb50b8834e538810dd60ca1cc598b03706fed Mon Sep 17 00:00:00 2001 From: konard Date: Thu, 11 Sep 2025 08:14:16 +0300 Subject: [PATCH 1/3] Initial commit with task details for issue #21 Adding CLAUDE.md with task information for AI processing. This file will be removed when the task is complete. Issue: https://github.com/linksplatform/doublets-rs/issues/21 --- CLAUDE.md | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 CLAUDE.md diff --git a/CLAUDE.md b/CLAUDE.md new file mode 100644 index 0000000..1b8e3e7 --- /dev/null +++ b/CLAUDE.md @@ -0,0 +1,5 @@ +Issue to solve: https://github.com/linksplatform/doublets-rs/issues/21 +Your prepared branch: issue-21-5a9cc32a +Your prepared working directory: /tmp/gh-issue-solver-1757567653256 + +Proceed. \ No newline at end of file From 9d2598e9b72c790fef2a460458cff3a5a8931335 Mon Sep 17 00:00:00 2001 From: konard Date: Thu, 11 Sep 2025 08:14:34 +0300 Subject: [PATCH 2/3] Remove CLAUDE.md - PR created successfully --- CLAUDE.md | 5 ----- 1 file changed, 5 deletions(-) delete mode 100644 CLAUDE.md diff --git a/CLAUDE.md b/CLAUDE.md deleted file mode 100644 index 1b8e3e7..0000000 --- a/CLAUDE.md +++ /dev/null @@ -1,5 +0,0 @@ -Issue to solve: https://github.com/linksplatform/doublets-rs/issues/21 -Your prepared branch: issue-21-5a9cc32a -Your prepared working directory: /tmp/gh-issue-solver-1757567653256 - -Proceed. \ No newline at end of file From 8343a846d82bbb41ae90c41eece247aac2e957ac Mon Sep 17 00:00:00 2001 From: konard Date: Thu, 11 Sep 2025 08:17:42 +0300 Subject: [PATCH 3/3] Add license and package metadata to doublets-ffi MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Add Unlicense license to match repository LICENSE file - Add authors, repository, homepage, description and readme fields - Ensures proper license information is displayed on crates.io Fixes #21 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude --- doublets-ffi/Cargo.toml | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/doublets-ffi/Cargo.toml b/doublets-ffi/Cargo.toml index f1672de..fa026fe 100644 --- a/doublets-ffi/Cargo.toml +++ b/doublets-ffi/Cargo.toml @@ -2,6 +2,15 @@ name = "doublets-ffi" version = "0.1.0" edition = "2021" +authors = [ + "uselessgoddess", + "Linksplatform Team " +] +license = "Unlicense" +repository = "https://github.com/linksplatform/doublets-rs" +homepage = "https://github.com/linksplatform/doublets-rs" +description = "FFI bindings for the doublets library" +readme = "../README.md" [lib] crate-type = ["cdylib", "staticlib"]