From a996b7c697a9e569264872512d0904219eab0063 Mon Sep 17 00:00:00 2001 From: Promise Raji Date: Fri, 24 Apr 2026 09:44:54 +0100 Subject: [PATCH 1/2] chore: re-trigger checks From d22e30a55144bd56579126ea510f072369d6a568 Mon Sep 17 00:00:00 2001 From: artylobos Date: Wed, 27 May 2026 06:47:56 +1000 Subject: [PATCH 2/2] docs: add crate metadata --- contracts/admin/Cargo.toml | 6 ++++++ contracts/lifecycle/Cargo.toml | 6 ++++++ contracts/token/Cargo.toml | 6 ++++++ 3 files changed, 18 insertions(+) diff --git a/contracts/admin/Cargo.toml b/contracts/admin/Cargo.toml index ba4b91e..6086880 100644 --- a/contracts/admin/Cargo.toml +++ b/contracts/admin/Cargo.toml @@ -4,6 +4,12 @@ version = "0.1.0" edition = "2021" publish = false description = "Admin and access control module for bc-forge token contracts" +license = "MIT" +repository = "https://github.com/BCPathway/bc-forge" +homepage = "https://github.com/BCPathway/bc-forge" +readme = "../../README.md" +keywords = ["stellar", "soroban", "token", "access-control"] +categories = ["cryptography::cryptocurrencies", "wasm"] [lib] crate-type = ["rlib"] diff --git a/contracts/lifecycle/Cargo.toml b/contracts/lifecycle/Cargo.toml index 8ff220f..159fb47 100644 --- a/contracts/lifecycle/Cargo.toml +++ b/contracts/lifecycle/Cargo.toml @@ -4,6 +4,12 @@ version = "0.1.0" edition = "2021" publish = false description = "Pause/unpause lifecycle management for bc-forge contracts" +license = "MIT" +repository = "https://github.com/BCPathway/bc-forge" +homepage = "https://github.com/BCPathway/bc-forge" +readme = "../../README.md" +keywords = ["stellar", "soroban", "token", "lifecycle"] +categories = ["cryptography::cryptocurrencies", "wasm"] [lib] crate-type = ["rlib"] diff --git a/contracts/token/Cargo.toml b/contracts/token/Cargo.toml index 32aa508..45e3d3a 100644 --- a/contracts/token/Cargo.toml +++ b/contracts/token/Cargo.toml @@ -4,6 +4,12 @@ version = "0.1.0" edition = "2021" publish = false description = "Core SEP-41 token contract for bc-forge with admin controls and pausable lifecycle" +license = "MIT" +repository = "https://github.com/BCPathway/bc-forge" +homepage = "https://github.com/BCPathway/bc-forge" +readme = "../../README.md" +keywords = ["stellar", "soroban", "token", "sep-41"] +categories = ["cryptography::cryptocurrencies", "wasm"] [lib] crate-type = ["cdylib", "rlib"]