-
Notifications
You must be signed in to change notification settings - Fork 13k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
This avoids naming collisions, particularly on Windows where the dynamic library variable is PATH and setting it causes the in-tree `tidy` to take precedence over the HTML tidy used by compiletest.
- Loading branch information
Showing
2 changed files
with
12 additions
and
1 deletion.
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,9 +3,14 @@ name = "tidy" | |
version = "0.1.0" | ||
authors = ["Alex Crichton <[email protected]>"] | ||
edition = "2018" | ||
autobins = false | ||
|
||
[dependencies] | ||
cargo_metadata = "0.11" | ||
regex = "1" | ||
lazy_static = "1" | ||
walkdir = "2" | ||
|
||
[[bin]] | ||
name = "rust-tidy" | ||
path = "src/main.rs" |