Absolute paths of the settings manifests, resolved against the package.
(&self, pkg_dir: &Path)
| 117 | |
| 118 | /// Absolute paths of the settings manifests, resolved against the package. |
| 119 | pub fn settings_manifest_paths(&self, pkg_dir: &Path) -> Vec<PathBuf> { |
| 120 | self.settings |
| 121 | .iter() |
| 122 | .map(|s| pkg_dir.join(&s.manifest)) |
| 123 | .collect() |
| 124 | } |
| 125 | } |
| 126 | |
| 127 | fn agent_name_guess(pkg_dir: &Path) -> String { |