(
manifest: &BuildManifest,
)
| 366 | } |
| 367 | } |
| 368 | } |
| 369 | |
| 370 | impl std::error::Error for BuildError {} |
| 371 | |
| 372 | pub struct BuildExecutor; |
| 373 | |
| 374 | impl BuildExecutor { |
| 375 | pub fn plan(manifest: &BuildManifest) -> BuildPlan { |
| 376 | BuildPlan { |
| 377 | name: manifest.name.clone(), |
| 378 | target: manifest.target, |
| 379 | entry: manifest.entry.clone(), |
| 380 | stdlib: manifest.stdlib, |
nothing calls this directly
no test coverage detected