eschudt_consul

Crates.ioeschudt_consul
lib.rseschudt_consul
version0.1.0
sourcesrc
created_at2019-06-03 05:11:28.963949
updated_at2019-06-03 05:11:28.963949
descriptionRust client libray for Consul HTTP API
homepage
repositoryhttps://github.com/eschudt/consul-rust
max_upload_size
id138623
size37,608
Erich (eschudt)

documentation

README

consul-rust

Build Status

See the documentation here.

Rust client library for the Consul HTTP API.

Usage

extern crate consul;

use consul::Client;
use std::collections::HashMap;

fn main() {
    let client = Client::new("http://127.0.0.1:8500");
    let services: HashMap<String, Vec<String>> = client.catalog.services().unwrap();
    println!("{:?}", services);
}

For more examples, see the tests.

Installation

Simply include consul-rust in your Cargo dependencies.

[dependencies]
eschudt_consul = "0.1"
Commit count: 87

cargo fmt