revert: "Revert "cli: integrate TaskExecutor" (#1329)" (#1336)

This commit is contained in:
Matthias Seitz
2023-02-14 15:50:19 +01:00
committed by GitHub
parent 8a0156fe4e
commit cd1afccf52
13 changed files with 186 additions and 58 deletions

View File

@ -170,3 +170,9 @@ impl<D> AsRef<Path> for PlatformPath<D> {
self.0.as_path()
}
}
impl<D> From<PlatformPath<D>> for PathBuf {
fn from(value: PlatformPath<D>) -> Self {
value.0
}
}