From 092edabd2d9c35804119c78a0645cd74c5a85e07 Mon Sep 17 00:00:00 2001 From: Michael Vines Date: Thu, 13 Dec 2018 21:14:37 -0800 Subject: [PATCH] Add homepage field to all crates --- Cargo.toml | 2 +- drone/Cargo.toml | 1 + fullnode/Cargo.toml | 2 +- keygen/Cargo.toml | 1 + metrics/Cargo.toml | 1 + programs/bpf/rust/noop/Cargo.toml | 1 + programs/native/bpf_loader/Cargo.toml | 1 + programs/native/budget/Cargo.toml | 1 + programs/native/erc20/Cargo.toml | 1 + programs/native/lua_loader/Cargo.toml | 1 + programs/native/native_loader/Cargo.toml | 1 + programs/native/noop/Cargo.toml | 1 + programs/native/storage/Cargo.toml | 1 + programs/native/system/Cargo.toml | 1 + programs/native/vote/Cargo.toml | 1 + sdk/Cargo.toml | 1 + upload-perf/Cargo.toml | 1 + vote-signer/Cargo.toml | 1 + 18 files changed, 18 insertions(+), 2 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index cc5003f465..d43ec15d27 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -3,7 +3,7 @@ name = "solana" description = "Blockchain, Rebuilt for Scale" version = "0.11.0" documentation = "https://docs.rs/solana" -homepage = "http://solana.com/" +homepage = "https://solana.com/" readme = "README.md" repository = "https://github.com/solana-labs/solana" authors = ["Solana Maintainers "] diff --git a/drone/Cargo.toml b/drone/Cargo.toml index 7b533d6e29..78d0c674ad 100644 --- a/drone/Cargo.toml +++ b/drone/Cargo.toml @@ -5,6 +5,7 @@ description = "Solana Drone" authors = ["Solana Maintainers "] repository = "https://github.com/solana-labs/solana" license = "Apache-2.0" +homepage = "https://solana.com/" [features] cuda = [] diff --git a/fullnode/Cargo.toml b/fullnode/Cargo.toml index ebf0de32c8..687a842c8e 100644 --- a/fullnode/Cargo.toml +++ b/fullnode/Cargo.toml @@ -5,7 +5,7 @@ name = "solana-fullnode" version = "0.1.0" repository = "https://github.com/solana-labs/solana" license = "Apache-2.0" -homepage = "http://solana.com/" +homepage = "https://solana.com/" [dependencies] clap = "2.32.0" diff --git a/keygen/Cargo.toml b/keygen/Cargo.toml index ca4ee86141..147177dfc7 100644 --- a/keygen/Cargo.toml +++ b/keygen/Cargo.toml @@ -5,6 +5,7 @@ description = "Solana key generation utility" authors = ["Solana Maintainers "] repository = "https://github.com/solana-labs/solana" license = "Apache-2.0" +homepage = "https://solana.com/" [features] cuda = [] diff --git a/metrics/Cargo.toml b/metrics/Cargo.toml index 05bb92f115..9bce4fda07 100644 --- a/metrics/Cargo.toml +++ b/metrics/Cargo.toml @@ -5,6 +5,7 @@ description = "Solana Metrics" authors = ["Solana Maintainers "] repository = "https://github.com/solana-labs/solana" license = "Apache-2.0" +homepage = "https://solana.com/" [dependencies] influx_db_client = "0.3.6" diff --git a/programs/bpf/rust/noop/Cargo.toml b/programs/bpf/rust/noop/Cargo.toml index 721d5e69ad..ceba7a618c 100644 --- a/programs/bpf/rust/noop/Cargo.toml +++ b/programs/bpf/rust/noop/Cargo.toml @@ -5,6 +5,7 @@ description = "Solana BPF noop program" authors = ["Solana Maintainers "] repository = "https://github.com/solana-labs/solana" license = "Apache-2.0" +homepage = "https://solana.com/" [dependencies] rbpf = "0.1.0" diff --git a/programs/native/bpf_loader/Cargo.toml b/programs/native/bpf_loader/Cargo.toml index 9d5386ee84..5c1f04501c 100644 --- a/programs/native/bpf_loader/Cargo.toml +++ b/programs/native/bpf_loader/Cargo.toml @@ -5,6 +5,7 @@ description = "Solana BPF Loader" authors = ["Solana Maintainers "] repository = "https://github.com/solana-labs/solana" license = "Apache-2.0" +homepage = "https://solana.com/" [features] bpf_c = [] diff --git a/programs/native/budget/Cargo.toml b/programs/native/budget/Cargo.toml index fd5a35af68..0d3088d47e 100644 --- a/programs/native/budget/Cargo.toml +++ b/programs/native/budget/Cargo.toml @@ -5,6 +5,7 @@ description = "Solana budget program" authors = ["Solana Maintainers "] repository = "https://github.com/solana-labs/solana" license = "Apache-2.0" +homepage = "https://solana.com/" [dependencies] bincode = "1.0.0" diff --git a/programs/native/erc20/Cargo.toml b/programs/native/erc20/Cargo.toml index 775b2765b0..aa9fea5c0f 100644 --- a/programs/native/erc20/Cargo.toml +++ b/programs/native/erc20/Cargo.toml @@ -5,6 +5,7 @@ description = "Solana reference erc20 program" authors = ["Solana Maintainers "] repository = "https://github.com/solana-labs/solana" license = "Apache-2.0" +homepage = "https://solana.com/" [dependencies] bincode = "1.0.0" diff --git a/programs/native/lua_loader/Cargo.toml b/programs/native/lua_loader/Cargo.toml index 0f17704055..f93672c5ff 100644 --- a/programs/native/lua_loader/Cargo.toml +++ b/programs/native/lua_loader/Cargo.toml @@ -5,6 +5,7 @@ description = "Solana Lua Loader" authors = ["Solana Maintainers "] repository = "https://github.com/solana-labs/solana" license = "Apache-2.0" +homepage = "https://solana.com/" [dependencies] bincode = "1.0.0" diff --git a/programs/native/native_loader/Cargo.toml b/programs/native/native_loader/Cargo.toml index ee89507507..a704556368 100644 --- a/programs/native/native_loader/Cargo.toml +++ b/programs/native/native_loader/Cargo.toml @@ -5,6 +5,7 @@ description = "Solana Native Loader" authors = ["Solana Maintainers "] repository = "https://github.com/solana-labs/solana" license = "Apache-2.0" +homepage = "https://solana.com/" [dependencies] bincode = "1.0.0" diff --git a/programs/native/noop/Cargo.toml b/programs/native/noop/Cargo.toml index 942192868c..9fb55a766e 100644 --- a/programs/native/noop/Cargo.toml +++ b/programs/native/noop/Cargo.toml @@ -5,6 +5,7 @@ description = "Solana noop program" authors = ["Solana Maintainers "] repository = "https://github.com/solana-labs/solana" license = "Apache-2.0" +homepage = "https://solana.com/" [dependencies] solana-sdk = { path = "../../../sdk", version = "0.11.0" } diff --git a/programs/native/storage/Cargo.toml b/programs/native/storage/Cargo.toml index c2ecf23c3e..a8234fa611 100644 --- a/programs/native/storage/Cargo.toml +++ b/programs/native/storage/Cargo.toml @@ -5,6 +5,7 @@ description = "Solana storage program" authors = ["Solana Maintainers "] repository = "https://github.com/solana-labs/solana" license = "Apache-2.0" +homepage = "https://solana.com/" [dependencies] bincode = "1.0.0" diff --git a/programs/native/system/Cargo.toml b/programs/native/system/Cargo.toml index 2f8cf32420..1d9f059d89 100644 --- a/programs/native/system/Cargo.toml +++ b/programs/native/system/Cargo.toml @@ -5,6 +5,7 @@ description = "Solana system program" authors = ["Solana Maintainers "] repository = "https://github.com/solana-labs/solana" license = "Apache-2.0" +homepage = "https://solana.com/" [dependencies] bincode = "1.0.0" diff --git a/programs/native/vote/Cargo.toml b/programs/native/vote/Cargo.toml index 6354b8d150..8c8b037134 100644 --- a/programs/native/vote/Cargo.toml +++ b/programs/native/vote/Cargo.toml @@ -5,6 +5,7 @@ description = "Solana vote program" authors = ["Solana Maintainers "] repository = "https://github.com/solana-labs/solana" license = "Apache-2.0" +homepage = "https://solana.com/" [dependencies] bincode = "1.0.0" diff --git a/sdk/Cargo.toml b/sdk/Cargo.toml index 7bfec873f3..c0d989bf2c 100644 --- a/sdk/Cargo.toml +++ b/sdk/Cargo.toml @@ -4,6 +4,7 @@ version = "0.11.0" description = "Solana SDK" authors = ["Solana Maintainers "] repository = "https://github.com/solana-labs/solana" +homepage = "https://solana.com/" license = "Apache-2.0" [dependencies] diff --git a/upload-perf/Cargo.toml b/upload-perf/Cargo.toml index a3e586825b..d1d3de8dc8 100644 --- a/upload-perf/Cargo.toml +++ b/upload-perf/Cargo.toml @@ -6,6 +6,7 @@ authors = ["Solana Maintainers "] repository = "https://github.com/solana-labs/solana" license = "Apache-2.0" edition = "2018" +homepage = "https://solana.com/" [dependencies] serde_json = "1.0.10" diff --git a/vote-signer/Cargo.toml b/vote-signer/Cargo.toml index 968446f0ab..d4259f682a 100644 --- a/vote-signer/Cargo.toml +++ b/vote-signer/Cargo.toml @@ -5,6 +5,7 @@ description = "Solana Vote Signing Service" authors = ["Solana Maintainers "] repository = "https://github.com/solana-labs/solana" license = "Apache-2.0" +homepage = "https://solana.com/" [dependencies] bs58 = "0.2.0"