Skip to content

Commit 01d98d7

Browse files
authored
use https:// for all links -- avoid legacy http:// (#131)
1 parent 3c34d24 commit 01d98d7

14 files changed

+28
-28
lines changed

Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@
22
authors = ["Jason Ozias <[email protected]>"]
33
categories = ["development-tools", "development-tools::build-utils"]
44
description = "Generate 'cargo:rustc-env' instructions via 'build.rs' for use in your code via the env! macro"
5-
documentation = "http://docs.rs/vergen"
5+
documentation = "https://docs.rs/vergen"
66
edition = "2021"
7-
homepage = "http://github.com/rustyhorde/vergen"
7+
homepage = "https://github.com/rustyhorde/vergen"
88
keywords = ["cargo", "instructions", "build", "tool"]
99
license = "MIT OR Apache-2.0"
1010
name = "vergen"

LICENSE-APACHE

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Apache License
22
Version 2.0, January 2004
3-
http://www.apache.org/licenses/
3+
https://www.apache.org/licenses/
44

55
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
66

@@ -192,7 +192,7 @@ Licensed under the Apache License, Version 2.0 (the "License");
192192
you may not use this file except in compliance with the License.
193193
You may obtain a copy of the License at
194194

195-
http://www.apache.org/licenses/LICENSE-2.0
195+
https://www.apache.org/licenses/LICENSE-2.0
196196

197197
Unless required by applicable law or agreed to in writing, software
198198
distributed under the License is distributed on an "AS IS" BASIS,

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -71,8 +71,8 @@ See the documentation at [CONTRIBUTING.md](CONTRIBUTING.md)
7171
## License
7272

7373
Licensed under either of
74-
* Apache License, Version 2.0 ([LICENSE-APACHE](LICENSE-APACHE) or http://www.apache.org/licenses/LICENSE-2.0)
75-
* MIT license ([LICENSE-MIT](LICENSE-MIT) or http://opensource.org/licenses/MIT)
74+
* Apache License, Version 2.0 ([LICENSE-APACHE](LICENSE-APACHE) or https://www.apache.org/licenses/LICENSE-2.0)
75+
* MIT license ([LICENSE-MIT](LICENSE-MIT) or https://opensource.org/licenses/MIT)
7676
at your option.
7777

7878
### Contribution

src/config.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
// Copyright (c) 2016, 2018, 2021 vergen developers
22
//
33
// Licensed under the Apache License, Version 2.0
4-
// <LICENSE-APACHE or http://www.apache.org/licenses/LICENSE-2.0> or the MIT
5-
// license <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
4+
// <LICENSE-APACHE or https://www.apache.org/licenses/LICENSE-2.0> or the MIT
5+
// license <LICENSE-MIT or https://opensource.org/licenses/MIT>, at your
66
// option. All files in the project carrying such notice may not be copied,
77
// modified, or distributed except according to those terms.
88

src/constants.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
// Copyright (c) 2016, 2018, 2021 vergen developers
22
//
33
// Licensed under the Apache License, Version 2.0
4-
// <LICENSE-APACHE or http://www.apache.org/licenses/LICENSE-2.0> or the MIT
5-
// license <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
4+
// <LICENSE-APACHE or https://www.apache.org/licenses/LICENSE-2.0> or the MIT
5+
// license <LICENSE-MIT or https://opensource.org/licenses/MIT>, at your
66
// option. All files in the project carrying such notice may not be copied,
77
// modified, or distributed except according to those terms.
88

src/error.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
// Copyright (c) 2016, 2018, 2021 vergen developers
22
//
33
// Licensed under the Apache License, Version 2.0
4-
// <LICENSE-APACHE or http://www.apache.org/licenses/LICENSE-2.0> or the MIT
5-
// license <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
4+
// <LICENSE-APACHE or https://www.apache.org/licenses/LICENSE-2.0> or the MIT
5+
// license <LICENSE-MIT or https://opensource.org/licenses/MIT>, at your
66
// option. All files in the project carrying such notice may not be copied,
77
// modified, or distributed except according to those terms.
88

src/feature/build.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
// Copyright (c) 2016, 2018, 2021 vergen developers
22
//
33
// Licensed under the Apache License, Version 2.0
4-
// <LICENSE-APACHE or http://www.apache.org/licenses/LICENSE-2.0> or the MIT
5-
// license <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
4+
// <LICENSE-APACHE or https://www.apache.org/licenses/LICENSE-2.0> or the MIT
5+
// license <LICENSE-MIT or https://opensource.org/licenses/MIT>, at your
66
// option. All files in the project carrying such notice may not be copied,
77
// modified, or distributed except according to those terms.
88

src/feature/cargo.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
// Copyright (c) 2016, 2018, 2021 vergen developers
22
//
33
// Licensed under the Apache License, Version 2.0
4-
// <LICENSE-APACHE or http://www.apache.org/licenses/LICENSE-2.0> or the MIT
5-
// license <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
4+
// <LICENSE-APACHE or https://www.apache.org/licenses/LICENSE-2.0> or the MIT
5+
// license <LICENSE-MIT or https://opensource.org/licenses/MIT>, at your
66
// option. All files in the project carrying such notice may not be copied,
77
// modified, or distributed except according to those terms.
88

src/feature/git.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
// Copyright (c) 2016, 2018, 2021 vergen developers
22
//
33
// Licensed under the Apache License, Version 2.0
4-
// <LICENSE-APACHE or http://www.apache.org/licenses/LICENSE-2.0> or the MIT
5-
// license <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
4+
// <LICENSE-APACHE or https://www.apache.org/licenses/LICENSE-2.0> or the MIT
5+
// license <LICENSE-MIT or https://opensource.org/licenses/MIT>, at your
66
// option. All files in the project carrying such notice may not be copied,
77
// modified, or distributed except according to those terms.
88

src/feature/mod.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
// Copyright (c) 2016, 2018, 2021 vergen developers
22
//
33
// Licensed under the Apache License, Version 2.0
4-
// <LICENSE-APACHE or http://www.apache.org/licenses/LICENSE-2.0> or the MIT
5-
// license <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
4+
// <LICENSE-APACHE or https://www.apache.org/licenses/LICENSE-2.0> or the MIT
5+
// license <LICENSE-MIT or https://opensource.org/licenses/MIT>, at your
66
// option. All files in the project carrying such notice may not be copied,
77
// modified, or distributed except according to those terms.
88

src/feature/rustc.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
// Copyright (c) 2016, 2018, 2021 vergen developers
22
//
33
// Licensed under the Apache License, Version 2.0
4-
// <LICENSE-APACHE or http://www.apache.org/licenses/LICENSE-2.0> or the MIT
5-
// license <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
4+
// <LICENSE-APACHE or https://www.apache.org/licenses/LICENSE-2.0> or the MIT
5+
// license <LICENSE-MIT or https://opensource.org/licenses/MIT>, at your
66
// option. All files in the project carrying such notice may not be copied,
77
// modified, or distributed except according to those terms.
88

src/feature/si.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
// Copyright (c) 2016, 2018, 2021 vergen developers
22
//
33
// Licensed under the Apache License, Version 2.0
4-
// <LICENSE-APACHE or http://www.apache.org/licenses/LICENSE-2.0> or the MIT
5-
// license <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
4+
// <LICENSE-APACHE or https://www.apache.org/licenses/LICENSE-2.0> or the MIT
5+
// license <LICENSE-MIT or https://opensource.org/licenses/MIT>, at your
66
// option. All files in the project carrying such notice may not be copied,
77
// modified, or distributed except according to those terms.
88

src/gen.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
// Copyright (c) 2016, 2018, 2021 vergen developers
22
//
33
// Licensed under the Apache License, Version 2.0
4-
// <LICENSE-APACHE or http://www.apache.org/licenses/LICENSE-2.0> or the MIT
5-
// license <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
4+
// <LICENSE-APACHE or https://www.apache.org/licenses/LICENSE-2.0> or the MIT
5+
// license <LICENSE-MIT or https://opensource.org/licenses/MIT>, at your
66
// option. All files in the project carrying such notice may not be copied,
77
// modified, or distributed except according to those terms.
88

src/lib.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
// Copyright (c) 2016, 2018, 2021 vergen developers
22
//
33
// Licensed under the Apache License, Version 2.0
4-
// <LICENSE-APACHE or http://www.apache.org/licenses/LICENSE-2.0> or the MIT
5-
// license <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
4+
// <LICENSE-APACHE or https://www.apache.org/licenses/LICENSE-2.0> or the MIT
5+
// license <LICENSE-MIT or https://opensource.org/licenses/MIT>, at your
66
// option. All files in the project carrying such notice may not be copied,
77
// modified, or distributed except according to those terms.
88

0 commit comments

Comments
 (0)