azure-rust 0.4.0

Rust client for the Azure DevOps Server
Documentation
1
2
3
4
5
6
7
8
macro_rules! json {
    ($input:ident) => {{
        match serde_json::to_vec(&$input) {
            Ok(data) => data,
            Err(err) => return Box::pin(futures::future::err(err.into())),
        }
    }};
}