Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
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
1 change: 1 addition & 0 deletions cargo-crev/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ Versioning](https://semver.org/spec/v2.0.0.html).
- Fix crash on systems with libgit2 v1.4
- Fix the `crate clean` working directory check.
- Fix the `crate review` working directory check.
- Added support for the `.rust-toolchain.toml` file.


## [0.23.0](https://github.com/crev-dev/cargo-crev/compare/v0.22.2...v0.23.0) - 2022-01-22
Expand Down
2 changes: 1 addition & 1 deletion crev-lib/src/util/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ fn mark_dangerous_name(
changes.push("cargo/config can replace linkers, source of dependencies".to_string());
PathBuf::from("config.CREV")
}
"rust-toolchain" | "rust-toolchain.toml" => {
"rust-toolchain" | "rust-toolchain.toml" | ".rust-toolchain.toml" => {
changes
.push("rust-toolchain file could unexpectedly replace your compiler".to_string());
PathBuf::from(format!("{orig_name}.CREV"))
Expand Down