Please check the build logs for more information.
See Builds for ideas on how to fix a failed build, or Metadata for how to configure docs.rs builds.
If you believe this is docs.rs' fault, open an issue.
etcd
Server implementation of a etcd v3 API client on Rust. It provides asynchronous client backed by tokio and tonic.
[!IMPORTANT] This is an experimental Prof of Concept of the features bellow
Features
- etcd API v3 compatible client using protobuf to leverage existing ecosystem
- priority is a queue implementation with order and delivery guarantee
- no message storage, cluster election, as use another cluster implementation
- ability to build into another rust application as a component, see rppd
Supported APIs
- KV (wo: filter, range, version, pagination, linearizable read)
- Watch (wo: filter, fragment, ranges, revision)
Low priority:
- Lock
- Namespace
- Lease
Lowest priority:
- Auth
- Maintenance
- Cluster
- Election
Usage
Add this to your Cargo.toml:
[]
= "0.14"
= { = "1.0", = ["full"] }
To get started using etcd:
use ;
async
Examples
Examples can be found in examples.
License
Dual-licensed to be compatible with the Rust project.
Licensed under the Apache License, Version 2.0 http://www.apache.org/licenses/LICENSE-2.0 or the MIT license http://opensource.org/licenses/MIT, at your option. This file may not be copied, modified, or distributed except according to those terms.
Contribution
Unless you explicitly state otherwise, any contribution intentionally submitted
for inclusion in etcd by you, shall be licensed as Apache-2.0 and MIT, without any additional
terms or conditions.