Skip to content

Commit 1032203

Browse files
committed
Remove temp.
1 parent 7fda67f commit 1032203

File tree

3 files changed

+1
-8
lines changed

3 files changed

+1
-8
lines changed

Cargo.lock

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

xtask/Cargo.toml

-1
Original file line numberDiff line numberDiff line change
@@ -23,4 +23,3 @@ once_cell = "1.15"
2323
semver = "1"
2424
chrono = "0.4"
2525
wildmatch = "2.1.1"
26-
tempfile = "3.3.0"

xtask/src/main.rs

-5
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@ pub mod crosstool;
88
pub mod hooks;
99
pub mod install_git_hooks;
1010
pub mod target_info;
11-
pub mod temp;
1211
pub mod util;
1312

1413
use ci::CiJob;
@@ -24,7 +23,6 @@ use self::crosstool::ConfigureCrosstool;
2423
use self::hooks::{Check, Test};
2524
use self::install_git_hooks::InstallGitHooks;
2625
use self::target_info::TargetInfo;
27-
use self::temp::MakeTempDir;
2826

2927
#[derive(Parser, Debug)]
3028
#[clap(version, about, long_about = None)]
@@ -67,8 +65,6 @@ enum Commands {
6765
ValidateChangelog(ValidateChangelog),
6866
/// Code generation
6967
Codegen(Codegen),
70-
/// Create temporary directory
71-
MakeTempDir(MakeTempDir),
7268
}
7369

7470
fn is_toolchain(toolchain: &str) -> cross::Result<String> {
@@ -135,7 +131,6 @@ pub fn main() -> cross::Result<()> {
135131
changelog::validate_changelog(args, &mut msg_info)?;
136132
}
137133
Commands::Codegen(args) => codegen::codegen(args)?,
138-
Commands::MakeTempDir(args) => temp::make_temp_dir(args)?,
139134
}
140135

141136
Ok(())

0 commit comments

Comments
 (0)