bitbucket

Crates.iobitbucket
lib.rsbitbucket
version0.1.2-alpha.1
sourcesrc
created_at2020-03-28 10:50:33.262458
updated_at2020-03-29 20:19:18.63276
descriptionAsync bitbucket server bindings
homepagehttps://github.com/cloudflavor/bitbucket-rs
repositoryhttps://github.com/cloudflavor/bitbucket-rs
max_upload_size
id223772
size38,282
Victor Palade (PI-Victor)

documentation

https://docs.rs/crate/bitbucket

README

bitbucket-rs

Crates.io docs.rs Rust

NOTE: work-in-progress async rust bindings for bitbucket server. This is published so that the name is reserved for use on crates.io.

Examples

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,
        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
Commit count: 37

cargo fmt