Crates.io | bitbucket-server |
lib.rs | bitbucket-server |
version | 0.1.0-alpha.1 |
source | src |
created_at | 2021-10-01 08:29:15.017697 |
updated_at | 2021-10-01 08:29:15.017697 |
description | Async bitbucket server bindings |
homepage | https://github.com/cloudflavor/bitbucket-server-rs |
repository | https://github.com/cloudflavor/bitbucket-server-rs |
max_upload_size | |
id | 459055 |
size | 16,366 |
NOTE: work-in-progress async rust bindings for bitbucket server. This is published so that the name is reserved for use on 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(())
}
Build and read the documentation locally.
$ 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