Skip to content

Commit 76ef162

Browse files
benluiwjytmimi
authored andcommitted
add check_diff crate skeleton code
1 parent bf7bb56 commit 76ef162

File tree

5 files changed

+280
-0
lines changed

5 files changed

+280
-0
lines changed

check_diff/.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
/target

check_diff/Cargo.lock

+237
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

check_diff/Cargo.toml

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
[package]
2+
name = "check_diff"
3+
version = "0.1.0"
4+
edition = "2021"
5+
6+
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
7+
8+
[dependencies]
9+
clap = { version = "4.4.2", features = ["derive"] }

check_diff/src/main.rs

+25
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
use clap::Parser;
2+
/// Inputs for the check_diff script
3+
#[derive(Parser)]
4+
struct CliInputs {
5+
/// Git url of a rustfmt fork to compare against the latest master rustfmt
6+
remote_repo_url: String,
7+
/// Name of the feature branch on the forked repo
8+
feature_branch: String,
9+
/// Optional commit hash from the feature branch
10+
#[arg(short, long)]
11+
commit_hash: Option<String>,
12+
/// Optional comma separated list of rustfmt config options to
13+
/// pass when running the feature branch
14+
#[arg(value_delimiter = ',', short, long, num_args = 1..)]
15+
rustfmt_config: Option<Vec<String>>,
16+
}
17+
18+
fn main() {
19+
let args = CliInputs::parse();
20+
println!(
21+
"remote_repo_url: {:?}, feature_branch: {:?},
22+
optional_commit_hash: {:?}, optional_rustfmt_config: {:?}",
23+
args.remote_repo_url, args.feature_branch, args.commit_hash, args.rustfmt_config
24+
);
25+
}

src/test/mod.rs

+8
Original file line numberDiff line numberDiff line change
@@ -390,6 +390,14 @@ fn self_tests() {
390390
path.push("main.rs");
391391
files.push(path);
392392
}
393+
// for crates that need to be included but lies outside src
394+
let external_crates = vec!["check_diff"];
395+
for external_crate in external_crates {
396+
let mut path = PathBuf::from(external_crate);
397+
path.push("src");
398+
path.push("main.rs");
399+
files.push(path);
400+
}
393401
files.push(PathBuf::from("src/lib.rs"));
394402

395403
let (reports, count, fails) = check_files(files, &Some(PathBuf::from("rustfmt.toml")));

0 commit comments

Comments
 (0)