codepecker 0.2.0

CodePecker in the CI
Documentation
1
2
3
4
5
6
7
#[tokio::main]
async fn main() -> Result<(), codepecker::error::CodepeckerError> {
    if let Err(e) = codepecker::builder().await {
        eprintln!("程序运行出错: {}", e);
    }
    Ok(())
}