pub trait GetPackageAuthors { type Error; // Required method fn get_package_authors(&self) -> Result<Option<Vec<String>>, Self::Error>; }