From b00f6178c717bc2aa4d7c33b2ee2c9f5407f1b7d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?G=C3=A1bor=20Szab=C3=B3?= Date: Tue, 25 Jun 2024 20:45:34 +0300 Subject: [PATCH] It is better to use the repository field in Cargo.toml (#1655) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit To allow [Crates.io](https://crates.io/) , [lib.rs](https://lib.rs/) and the [Rust Digger](https://rust-digger.code-maven.com/) to link to it. See [the manifest](https://doc.rust-lang.org/cargo/reference/manifest.html#the-repository-field) for the explanation. Signed-off-by: Gábor Szabó --- Cargo.toml | 2 +- solang-parser/Cargo.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 2c10d3f47..534ab0ac5 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -2,7 +2,7 @@ name = "solang" version = "0.3.3" authors = ["Sean Young ", "Lucas Steuernagel ", "Cyrill Leutwiler "] -homepage = "https://github.com/hyperledger/solang" +repository = "https://github.com/hyperledger/solang" documentation = "https://solang.readthedocs.io/" license = "Apache-2.0" build = "build.rs" diff --git a/solang-parser/Cargo.toml b/solang-parser/Cargo.toml index 043739246..03c48d8d5 100644 --- a/solang-parser/Cargo.toml +++ b/solang-parser/Cargo.toml @@ -2,7 +2,7 @@ name = "solang-parser" version = "0.3.3" authors = ["Sean Young ", "Lucas Steuernagel ", "Cyrill Leutwiler "] -homepage = "https://github.com/hyperledger/solang" +repository = "https://github.com/hyperledger/solang" documentation = "https://solang.readthedocs.io/" license = "Apache-2.0" build = "build.rs"