From de4c5513634741484c7c9b14894c732da2a5f45f Mon Sep 17 00:00:00 2001 From: Benji Smith <6193112+Benjins@users.noreply.github.com> Date: Fri, 18 Nov 2022 20:53:08 -0500 Subject: [PATCH] Update docs link in Cargo.toml to HTTPS version Currently, the documentation link is specified in Cargo.toml as: documentation = "http://rust-lang.github.io/mdBook/index.html" which propagates to crates.io and if users click on the docs link there they get the non-TLS version. Not likely to cause major issues, but still best practice to use the HTTPS version since it's there --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index 5b564ec9..80973481 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -6,7 +6,7 @@ authors = [ "Michael-F-Bryan ", "Matt Ickstadt " ] -documentation = "http://rust-lang.github.io/mdBook/index.html" +documentation = "https://rust-lang.github.io/mdBook/index.html" edition = "2021" exclude = ["/guide/*"] keywords = ["book", "gitbook", "rustbook", "markdown"]