And it is required by anyhow in async functions. To reproduce, try to compile this code ```rust use scraper::Selector; #[tokio::main] async fn main() -> anyhow::Result<()> { let selector = Selector::parse("#top")?; Ok(()) } ```