(&self)
| 330 | } |
| 331 | |
| 332 | pub fn read_manifest(&self) -> Result<DocumentMut> { |
| 333 | let manifest_path = self.root.join("Cargo.toml"); |
| 334 | let manifest_text = fs::read_to_string(manifest_path)?; |
| 335 | Ok(manifest_text.parse()?) |
| 336 | } |
| 337 | |
| 338 | pub fn update_manifest( |
| 339 | &self, |