etcd for Rust

Crates.io Docs.rs MIT licensed Travis Build Status Dependency Status

An etcd(API v3) client for Rust, and it provides async/await APIs backed by tokio and tonic.

Documentation on the library can be found at docs.rs/etcd-rs.

Features

Examples

./examples

Usage

Add following dependencies in your project cargo.toml:

toml [dependencies] etcd-rs = "0.2"

Setup Client

```rust let endpoints = vec!["http://127.0.0.1:2379".to_owned()];

let client = Client::connect(ClientConfig { endpoints, auth: None, tls: None }).await; ```

if authenticate enabled

```rust let endpoints = vec!["http://127.0.0.1:2379".to_owned()];

let client = Client::connect(ClientConfig { endpoints, auth: Some(("user".toowned(), "password".toowned())), tls: None }).await; ```

with tls

```rust let endpoints = vec!["https://127.0.0.1:2379".to_owned()]; let tls = ClientTlsConfig::new();

let client = Client::connect(ClientConfig { endpoints, auth: Some(("user".toowned(), "password".toowned())), tls: Some(tls) }).await; ```

License

This project is licensed under the MIT license.