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

```rust extern crate bitbucket; extern crate tokio;

use bitbucket::client::Client; use bitbucket::prelude::*;

[tokio::main]

async fn main() -> Result<(), Box> { let client = Client::new( "mytoken".tostring(), "http://bitbucket.company.com".tostring(), false, false, ); let proj = Project::new(client).get("myproject").await?; println!("{:?}", proj); Ok(()) }

```

Build and read the documentation locally.

bash $ 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