This is an unofficial Azure DevOps Rust API crate.
It is in early development and only a subset of function has been tested, so there will be issues and breaking changes.
If you find any issues then please raise them via Github.
azure_devops_rust_api
implements a Rust interface to the Azure DevOps REST API (version 7.1).
The crate is autogenerated from the Azure DevOps OpenAPI spec.
The crate has many features/modules, but the general approach is similar for all:
Example usage (from examples/gitrepolist.rs):
```rust // Get authentication credential either from a PAT ("ADOTOKEN") or via the az cli. let credential = match env::var("ADOTOKEN") { Ok(token) => { println!("Authenticate using PAT provided via $ADOTOKEN"); Credential::frompat(token) } Err() => { println!("Authenticate using Azure CLI"); Credential::fromtokencredential(Arc::new(azureidentity::AzureCliCredential {})) } };
// Get ADO server configuration via environment variables
let service_endpoint = env::var("ADO_SERVICE_ENDPOINT").expect("Must define ADO_SERVICE_ENDPOINT");
let organization = env::var("ADO_ORGANIZATION").expect("Must define ADO_ORGANIZATION");
let project = env::var("ADO_PROJECT").expect("Must define ADO_PROJECT");
// Create a "git" client
let client = git::operations::Client::new(service_endpoint, credential, vec![]);
// Use the client to list all repositories in the specified organization/project
let repos = client
.repositories()
.list(organization, project)
.into_future()
.await?
.value;
// Output repo names
for repo in repos.iter() {
println!("{}", repo.name);
}
println!("{} repos found", repos.len());
```
Individual components in the API are enabled via Rust features
.
See the features
section of Cargo.toml for the full list of features.
Example application Cargo.toml
dependency spec showing how to specify desired features:
toml
[dependencies]
...
azure_devops_rust_api = { version = "0.1.0", features = ["git", "pipelines"] }
See examples directory.
Define environment variables:
sh
export ADO_SERVICE_ENDPOINT=https://dev.azure.com
export ADO_ORGANIZATION=<organization-name>
export ADO_PROJECT=<project-name>
To run the examples you need to provide authentication credentials either via:
ADO_TOKEN
az
CLI, where you just need to have authenticated by running az login
before
running the examples.Run the example via cargo run --example
. You will need to enable the features required
by the example. If you don't specify the necessary features you do get a helpful error
message.
Example:
sh
cargo run --example git_repo_get --features="git" <repo-name>