1个不稳定版本
0.1.0-alpha.1 | 2021年10月1日 |
---|
#493 in HTTP客户端
7KB
bitbucket-rs
注意:这是bitbucket服务器异步Rust绑定的工作进行中。发布此内容是为了在crates.io上保留名称。
示例
extern crate bitbucket;
extern crate tokio;
use bitbucket::client::Client;
use bitbucket::prelude::*;
#[tokio::main]
async fn main() -> Result<(), Box<dyn std::error::Error>> {
let client = Client::new(
"my_token".to_string(),
"http://bitbucket.company.com".to_string(),
false,
);
let proj = Project::new(client).get("my_project").await?;
println!("{:?}", proj);
Ok(())
}
本地构建和读取文档。
$ cargo doc --open -p bitbucket --no-deps
Documenting bitbucket v0.1.0-alpha (rust/bitbucket-rs)
Finished dev [unoptimized + debuginfo] target(s) in 1.27s
依赖项
~5–16MB
~214K SLoC