From 01d98d728f3f43129a7fab9dd29564884740adc7 Mon Sep 17 00:00:00 2001 From: dkg Date: Mon, 29 Aug 2022 22:58:18 -0400 Subject: [PATCH] use https:// for all links -- avoid legacy http:// (#131) --- Cargo.toml | 4 ++-- LICENSE-APACHE | 4 ++-- README.md | 4 ++-- src/config.rs | 4 ++-- src/constants.rs | 4 ++-- src/error.rs | 4 ++-- src/feature/build.rs | 4 ++-- src/feature/cargo.rs | 4 ++-- src/feature/git.rs | 4 ++-- src/feature/mod.rs | 4 ++-- src/feature/rustc.rs | 4 ++-- src/feature/si.rs | 4 ++-- src/gen.rs | 4 ++-- src/lib.rs | 4 ++-- 14 files changed, 28 insertions(+), 28 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 3d6386e6..ed55af01 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -2,9 +2,9 @@ authors = ["Jason Ozias "] categories = ["development-tools", "development-tools::build-utils"] description = "Generate 'cargo:rustc-env' instructions via 'build.rs' for use in your code via the env! macro" -documentation = "http://docs.rs/vergen" +documentation = "https://docs.rs/vergen" edition = "2021" -homepage = "http://github.com/rustyhorde/vergen" +homepage = "https://github.com/rustyhorde/vergen" keywords = ["cargo", "instructions", "build", "tool"] license = "MIT OR Apache-2.0" name = "vergen" diff --git a/LICENSE-APACHE b/LICENSE-APACHE index 16fe87b0..17d74680 100644 --- a/LICENSE-APACHE +++ b/LICENSE-APACHE @@ -1,6 +1,6 @@ Apache License Version 2.0, January 2004 - http://www.apache.org/licenses/ + https://www.apache.org/licenses/ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION @@ -192,7 +192,7 @@ Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at - http://www.apache.org/licenses/LICENSE-2.0 + https://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, diff --git a/README.md b/README.md index be10bcde..2316dc7e 100644 --- a/README.md +++ b/README.md @@ -71,8 +71,8 @@ See the documentation at [CONTRIBUTING.md](CONTRIBUTING.md) ## License Licensed under either of - * Apache License, Version 2.0 ([LICENSE-APACHE](LICENSE-APACHE) or http://www.apache.org/licenses/LICENSE-2.0) - * MIT license ([LICENSE-MIT](LICENSE-MIT) or http://opensource.org/licenses/MIT) + * Apache License, Version 2.0 ([LICENSE-APACHE](LICENSE-APACHE) or https://www.apache.org/licenses/LICENSE-2.0) + * MIT license ([LICENSE-MIT](LICENSE-MIT) or https://opensource.org/licenses/MIT) at your option. ### Contribution diff --git a/src/config.rs b/src/config.rs index c0ebaedc..75245db0 100644 --- a/src/config.rs +++ b/src/config.rs @@ -1,8 +1,8 @@ // Copyright (c) 2016, 2018, 2021 vergen developers // // Licensed under the Apache License, Version 2.0 -// or the MIT -// license , at your +// or the MIT +// license , at your // option. All files in the project carrying such notice may not be copied, // modified, or distributed except according to those terms. diff --git a/src/constants.rs b/src/constants.rs index b6e57fd6..565c4870 100644 --- a/src/constants.rs +++ b/src/constants.rs @@ -1,8 +1,8 @@ // Copyright (c) 2016, 2018, 2021 vergen developers // // Licensed under the Apache License, Version 2.0 -// or the MIT -// license , at your +// or the MIT +// license , at your // option. All files in the project carrying such notice may not be copied, // modified, or distributed except according to those terms. diff --git a/src/error.rs b/src/error.rs index 12439645..16e734ba 100644 --- a/src/error.rs +++ b/src/error.rs @@ -1,8 +1,8 @@ // Copyright (c) 2016, 2018, 2021 vergen developers // // Licensed under the Apache License, Version 2.0 -// or the MIT -// license , at your +// or the MIT +// license , at your // option. All files in the project carrying such notice may not be copied, // modified, or distributed except according to those terms. diff --git a/src/feature/build.rs b/src/feature/build.rs index 72b46753..2c26f288 100644 --- a/src/feature/build.rs +++ b/src/feature/build.rs @@ -1,8 +1,8 @@ // Copyright (c) 2016, 2018, 2021 vergen developers // // Licensed under the Apache License, Version 2.0 -// or the MIT -// license , at your +// or the MIT +// license , at your // option. All files in the project carrying such notice may not be copied, // modified, or distributed except according to those terms. diff --git a/src/feature/cargo.rs b/src/feature/cargo.rs index 7d77c44f..31e5644b 100644 --- a/src/feature/cargo.rs +++ b/src/feature/cargo.rs @@ -1,8 +1,8 @@ // Copyright (c) 2016, 2018, 2021 vergen developers // // Licensed under the Apache License, Version 2.0 -// or the MIT -// license , at your +// or the MIT +// license , at your // option. All files in the project carrying such notice may not be copied, // modified, or distributed except according to those terms. diff --git a/src/feature/git.rs b/src/feature/git.rs index f05857f0..dd7898f5 100644 --- a/src/feature/git.rs +++ b/src/feature/git.rs @@ -1,8 +1,8 @@ // Copyright (c) 2016, 2018, 2021 vergen developers // // Licensed under the Apache License, Version 2.0 -// or the MIT -// license , at your +// or the MIT +// license , at your // option. All files in the project carrying such notice may not be copied, // modified, or distributed except according to those terms. diff --git a/src/feature/mod.rs b/src/feature/mod.rs index 7080d25e..00a43fc0 100644 --- a/src/feature/mod.rs +++ b/src/feature/mod.rs @@ -1,8 +1,8 @@ // Copyright (c) 2016, 2018, 2021 vergen developers // // Licensed under the Apache License, Version 2.0 -// or the MIT -// license , at your +// or the MIT +// license , at your // option. All files in the project carrying such notice may not be copied, // modified, or distributed except according to those terms. diff --git a/src/feature/rustc.rs b/src/feature/rustc.rs index ab5ff4b1..58d8c962 100644 --- a/src/feature/rustc.rs +++ b/src/feature/rustc.rs @@ -1,8 +1,8 @@ // Copyright (c) 2016, 2018, 2021 vergen developers // // Licensed under the Apache License, Version 2.0 -// or the MIT -// license , at your +// or the MIT +// license , at your // option. All files in the project carrying such notice may not be copied, // modified, or distributed except according to those terms. diff --git a/src/feature/si.rs b/src/feature/si.rs index e46689c8..0ee4f0b2 100644 --- a/src/feature/si.rs +++ b/src/feature/si.rs @@ -1,8 +1,8 @@ // Copyright (c) 2016, 2018, 2021 vergen developers // // Licensed under the Apache License, Version 2.0 -// or the MIT -// license , at your +// or the MIT +// license , at your // option. All files in the project carrying such notice may not be copied, // modified, or distributed except according to those terms. diff --git a/src/gen.rs b/src/gen.rs index 60ce78bf..71cef004 100644 --- a/src/gen.rs +++ b/src/gen.rs @@ -1,8 +1,8 @@ // Copyright (c) 2016, 2018, 2021 vergen developers // // Licensed under the Apache License, Version 2.0 -// or the MIT -// license , at your +// or the MIT +// license , at your // option. All files in the project carrying such notice may not be copied, // modified, or distributed except according to those terms. diff --git a/src/lib.rs b/src/lib.rs index 12d031a0..ada912fc 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -1,8 +1,8 @@ // Copyright (c) 2016, 2018, 2021 vergen developers // // Licensed under the Apache License, Version 2.0 -// or the MIT -// license , at your +// or the MIT +// license , at your // option. All files in the project carrying such notice may not be copied, // modified, or distributed except according to those terms.