(manifest: &SourcesManifest, target: &str)
| 8103 | } |
| 8104 | |
| 8105 | fn package_aot_only(manifest: &SourcesManifest, target: &str) -> Result<()> { |
| 8106 | let outputs = BuildOutputs::discover_for_aot()?; |
| 8107 | package_aot_artifacts(target, &outputs, manifest)?; |
| 8108 | check_aot_package_manifest(target) |
| 8109 | } |
| 8110 | |
| 8111 | fn ensure_aot_serializer_binary() -> Result<PathBuf> { |
| 8112 | let mut command = Command::new("cargo"); |
no test coverage detected