fussybeaver / consul-rust

Rust client libray for Consul HTTP API

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

consul-rust

Build Status

Documentation here.

Rust client libray for Consul HTTP API

Usage

    extern crate consul;

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

    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 example, see the tests .

Installation

Simply include the consul-rust in your Cargo dependencies.

[dependencies]
consul = "0.3"

About

Rust client libray for Consul HTTP API

License:Apache License 2.0


Languages

Language:Rust 99.3%Language:Shell 0.7%