From 757e2bdd02fd7515545b8fe52226ff36e3cee14e Mon Sep 17 00:00:00 2001 From: Luca Bruno Date: Sat, 10 Aug 2024 10:34:11 +0200 Subject: [PATCH] primitive-types: add repository URL to Cargo.toml (#844) This adds the repository URL to the Cargo manifest of `primitive-types`, so that the crate published on crates.io can be automatically linked back to the source repository. --- primitive-types/Cargo.toml | 1 + 1 file changed, 1 insertion(+) diff --git a/primitive-types/Cargo.toml b/primitive-types/Cargo.toml index d7d93c4f..6aa89d2a 100644 --- a/primitive-types/Cargo.toml +++ b/primitive-types/Cargo.toml @@ -4,6 +4,7 @@ version = "0.12.2" authors = ["Parity Technologies "] license = "MIT OR Apache-2.0" homepage = "https://github.com/paritytech/parity-common" +repository = "https://github.com/paritytech/parity-common" description = "Primitive types shared by Ethereum and Substrate" edition = "2021" rust-version = "1.60.0"