From a22d5b2873b68e9c99d88a8cff1fb6a6fa433787 Mon Sep 17 00:00:00 2001 From: Jean-Pierre De Jesus DIAZ Date: Fri, 16 Feb 2024 13:57:33 +0100 Subject: [PATCH] SFT-3383: Add foundation-ur home-page. * Cargo.toml (workspace.package) : Add field. * ur/Cargo.toml (homepage): Inherit from workspace. Signed-off-by: Jean-Pierre De Jesus DIAZ --- Cargo.toml | 3 +++ ur/Cargo.toml | 1 + 2 files changed, 4 insertions(+) diff --git a/Cargo.toml b/Cargo.toml index 011d23c..2da2746 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -13,6 +13,9 @@ members = [ "urtypes/fuzz", ] +[workspace.package] +homepage = "https://github.com/Foundation-Devices/foundation-rs" + [workspace.dependencies] arbitrary = { version = "1", features = ["derive"] } bech32 = { version = "0.9", default-features = false } diff --git a/ur/Cargo.toml b/ur/Cargo.toml index 4d73a39..b98c7a4 100644 --- a/ur/Cargo.toml +++ b/ur/Cargo.toml @@ -13,6 +13,7 @@ Implementation of Blockchain Common's Uniform Resources (UR) standard, with static memory allocation for embedded devices while also allowing to use dynamic memory allocation for platforms with more resources. """ +homepage.workspace = true version = "0.1.0" edition = "2021" license = "MIT"