diff --git a/Cargo.lock b/Cargo.lock index efc31048fdb..fd6c476e195 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2592,7 +2592,7 @@ dependencies = [ [[package]] name = "home" -version = "0.5.13" +version = "0.5.14" [[package]] name = "html-escape" diff --git a/crates/home/Cargo.toml b/crates/home/Cargo.toml index 11e22a76297..c5a6e021923 100644 --- a/crates/home/Cargo.toml +++ b/crates/home/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "home" -version = "0.5.13" +version = "0.5.14" authors = ["Brian Anderson "] rust-version.workspace = true documentation = "https://docs.rs/home" diff --git a/crates/home/src/lib.rs b/crates/home/src/lib.rs index 1ab9e5d6a31..2b03686302d 100644 --- a/crates/home/src/lib.rs +++ b/crates/home/src/lib.rs @@ -78,7 +78,7 @@ pub fn cargo_home() -> io::Result { } /// Returns the storage directory used by Cargo within `cwd`. -/// For more details, see [`cargo_home`](fn.cargo_home.html). +/// For more details, see [`cargo_home`]. pub fn cargo_home_with_cwd(cwd: &Path) -> io::Result { env::cargo_home_with_cwd_env(&env::OS_ENV, cwd) } @@ -115,7 +115,7 @@ pub fn rustup_home() -> io::Result { } /// Returns the storage directory used by rustup within `cwd`. -/// For more details, see [`rustup_home`](fn.rustup_home.html). +/// For more details, see [`rustup_home`]. pub fn rustup_home_with_cwd(cwd: &Path) -> io::Result { env::rustup_home_with_cwd_env(&env::OS_ENV, cwd) }