zookeeper

Crates.iozookeeper
lib.rszookeeper
version0.8.0
sourcesrc
created_at2014-11-22 11:12:02.487095
updated_at2023-08-03 06:45:20.71241
descriptionA minimal ZooKeeper client
homepagehttps://github.com/bonifaido/rust-zookeeper
repositoryhttps://github.com/bonifaido/rust-zookeeper
max_upload_size
id335
size165,284
Nándor István Krácser (bonifaido)

documentation

http://bonifaido.github.io/rust-zookeeper

README

rust-zookeeper

Build Status Coverage Status Version License

Zookeeper client written 100% in Rust

This library is intended to be equivalent with the official (low-level) ZooKeeper client which ships with the official ZK distribution.

I have plans to implement recipes and more complex Curator like logic as well, but that takes a lot of time, so pull requests are more than welcome! At the moment only PathChildrenCache is implemented.

Usage

Put this in your Cargo.toml:

[dependencies]
zookeeper = "0.6"

And this in your crate root:

extern crate zookeeper;

Examples

Check the examples directory

Feature and Bug Handling

Also if you find a bug or would like to see a feature implemented please raise an issue or send a pull-request.

Documentation

Documentation is available on the gh-pages branch.

Build and develop

cd zk-test-cluster
mvn clean package
cd ..
cargo test

Contributing

All contributions are welcome! If you need some inspiration, please take a look at the currently open issues.

Commit count: 312

cargo fmt