cli: integrate TaskExecutor (#1314)

This commit is contained in:
Matthias Seitz
2023-02-13 23:24:18 +01:00
committed by GitHub
parent a1f7f54ab5
commit 5997103078
12 changed files with 148 additions and 35 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
}
}