-
Notifications
You must be signed in to change notification settings - Fork 2.4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Jonathan Claudius
committed
Jan 30, 2019
1 parent
d75d1fb
commit 0c3851c
Showing
20 changed files
with
61 additions
and
61 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,7 +3,7 @@ depends on a number of libraries which carry their own copyright notices and | |
license terms. These libraries are normally all linked static into the binary | ||
distributions of Cargo: | ||
|
||
* OpenSSL - http://www.openssl.org/source/license.html | ||
* OpenSSL - https://www.openssl.org/source/license.html | ||
|
||
Copyright (c) 1998-2011 The OpenSSL Project. All rights reserved. | ||
|
||
|
@@ -22,7 +22,7 @@ distributions of Cargo: | |
3. All advertising materials mentioning features or use of this | ||
software must display the following acknowledgment: | ||
"This product includes software developed by the OpenSSL Project | ||
for use in the OpenSSL Toolkit. (http://www.openssl.org/)" | ||
for use in the OpenSSL Toolkit. (https://www.openssl.org/)" | ||
|
||
4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to | ||
endorse or promote products derived from this software without | ||
|
@@ -36,7 +36,7 @@ distributions of Cargo: | |
6. Redistributions of any form whatsoever must retain the following | ||
acknowledgment: | ||
"This product includes software developed by the OpenSSL Project | ||
for use in the OpenSSL Toolkit (http://www.openssl.org/)" | ||
for use in the OpenSSL Toolkit (https://www.openssl.org/)" | ||
|
||
THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY | ||
EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE | ||
|
@@ -1037,7 +1037,7 @@ distributions of Cargo: | |
|
||
---------------------------------------------------------------------- | ||
|
||
* libssh2 - http://www.libssh2.org/license.html | ||
* libssh2 - https://www.libssh2.org/license.html | ||
|
||
Copyright (c) 2004-2007 Sara Golemon <[email protected]> | ||
Copyright (c) 2005,2006 Mikhail Gusarov <[email protected]> | ||
|
@@ -1080,7 +1080,7 @@ distributions of Cargo: | |
USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY | ||
OF SUCH DAMAGE. | ||
|
||
* libcurl - http://curl.haxx.se/docs/copyright.html | ||
* libcurl - https://curl.haxx.se/docs/copyright.html | ||
|
||
COPYRIGHT AND PERMISSION NOTICE | ||
|
||
|
@@ -1268,5 +1268,5 @@ distributions of Cargo: | |
ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR | ||
OTHER DEALINGS IN THE SOFTWARE. | ||
|
||
For more information, please refer to <http://unlicense.org/> | ||
For more information, please refer to <https://unlicense.org/> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -1446,8 +1446,8 @@ fn crate_env_vars() { | |
name = "foo" | ||
version = "0.5.1-alpha.1" | ||
description = "This is foo" | ||
homepage = "http://example.com" | ||
repository = "http://example.com/repo.git" | ||
homepage = "https://example.com" | ||
repository = "https://example.com/repo.git" | ||
authors = ["[email protected]"] | ||
"#, | ||
) | ||
|
@@ -1475,8 +1475,8 @@ fn crate_env_vars() { | |
assert_eq!(s, foo::version()); | ||
println!("{}", s); | ||
assert_eq!("foo", PKG_NAME); | ||
assert_eq!("http://example.com", HOMEPAGE); | ||
assert_eq!("http://example.com/repo.git", REPOSITORY); | ||
assert_eq!("https://example.com", HOMEPAGE); | ||
assert_eq!("https://example.com/repo.git", REPOSITORY); | ||
assert_eq!("This is foo", DESCRIPTION); | ||
let s = format!("{}.{}.{}-{}", VERSION_MAJOR, | ||
VERSION_MINOR, VERSION_PATCH, VERSION_PRE); | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.