(&self)
| 167 | |
| 168 | impl Package { |
| 169 | pub fn get_crate_name(&self) -> String { |
| 170 | self.name.replace('-', "_") |
| 171 | } |
| 172 | |
| 173 | pub fn get_firedbg_dir(&self, workspace: &Workspace) -> String { |
| 174 | let package_rel_path = &self.root_dir[(workspace.root_dir.len() + 1)..]; |