gcemeta 0.2.0

This library provides access to Google Compute Engine metadata service.
Documentation

This library provides access to GCE metadata service.

Example

use gcemeta::Client;

async fn example() {
let client = Client::new();
println!("on gce = {:?}", client.on_gce().await);
println!("project id = {:?}", client.project_id().await);
}