Skip to content
Closed
Changes from 2 commits
Commits
Show all changes
24 commits
Select commit Hold shift + click to select a range
1cac5fa
Look for `python3` first on MacOS, not `py`
jyn514 Feb 13, 2025
477a2ee
std::fs: slightly reformat `remove_dir_all` error docs
jieyouxu Feb 18, 2025
2bead27
remove : from stack-protector-heuristics-effect.rs filecheck
mustartt Feb 12, 2025
2c752bc
Undeprecate env::home_dir
arlosi Feb 20, 2025
fb8c993
fix label suffix
mustartt Feb 20, 2025
bf26f24
Clarify/update comments in `BufRead::read_line`'s default body
steffahn Feb 20, 2025
762fdf6
default to `-znostart-stop-gc`
lqd Feb 26, 2025
1528cc2
`librustdoc`: 2024 edition! 🎊
yotamofek Feb 27, 2025
7d263b0
Adapt `librustdoc` to 2024 edition lifetieme capture rules
yotamofek Feb 27, 2025
396c2a8
Stop using `hash_raw_entry` in `CodegenCx::const_str`
cuviper Feb 27, 2025
ea13ff7
add exclude to config.toml
Shourya742 Feb 16, 2025
d9ceab9
add test for exclude feature
Shourya742 Feb 16, 2025
9206960
Add change info to change tracker
Shourya742 Feb 16, 2025
7603e01
Simplify parallelization in test-float-parse
tgross35 Dec 31, 2024
3d0c89b
Rollup merge of #136938 - mustartt:fix-stack-protector-filecheck, r=M…
tgross35 Mar 2, 2025
0d0344c
Rollup merge of #136975 - jyn514:macos-x, r=Mark-Simulacrum
tgross35 Mar 2, 2025
f616b76
Rollup merge of #137147 - Shourya742:2025-02-16-support-exclude-in-co…
tgross35 Mar 2, 2025
e18fd2e
Rollup merge of #137240 - jieyouxu:remove_dir_all, r=Mark-Simulacrum
tgross35 Mar 2, 2025
f7d4e63
Rollup merge of #137327 - arlosi:home-dir, r=Mark-Simulacrum
tgross35 Mar 2, 2025
fd50842
Rollup merge of #137375 - steffahn:clarify-read_line-comment, r=Mark-…
tgross35 Mar 2, 2025
0386e93
Rollup merge of #137525 - tgross35:test-float-parse-less-parallelizat…
tgross35 Mar 2, 2025
e459ff0
Rollup merge of #137685 - lqd:nostart-stop-gc, r=petrochenkov
tgross35 Mar 2, 2025
b53fa79
Rollup merge of #137722 - yotamofek:pr/rustdoc/edition-2024, r=notriddle
tgross35 Mar 2, 2025
dedafdf
Rollup merge of #137741 - cuviper:const_str-raw_entry, r=Mark-Simulacrum
tgross35 Mar 2, 2025
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 0 additions & 5 deletions library/std/src/env.rs
Original file line number Diff line number Diff line change
Expand Up @@ -641,11 +641,6 @@ impl Error for JoinPathsError {
/// None => println!("Impossible to get your home dir!"),
/// }
/// ```
#[deprecated(
since = "1.29.0",
note = "This function's behavior may be unexpected on Windows. \
Consider using a crate from crates.io instead."
)]
#[must_use]
#[stable(feature = "env", since = "1.0.0")]
pub fn home_dir() -> Option<PathBuf> {
Expand Down