29 releases

Uses old Rust 2015

0.8.0 Aug 3, 2023
0.7.0 Oct 17, 2022
0.6.1 Nov 26, 2021
0.6.0 Feb 16, 2021
0.0.4 Nov 22, 2014

#448 in Network programming

Download history 46960/week @ 2023-12-04 4818/week @ 2023-12-11 793/week @ 2023-12-18 269/week @ 2023-12-25 605/week @ 2024-01-01 261/week @ 2024-01-08 662/week @ 2024-01-15 693/week @ 2024-01-22 243/week @ 2024-01-29 147/week @ 2024-02-05 198/week @ 2024-02-12 321/week @ 2024-02-19 284/week @ 2024-02-26 222/week @ 2024-03-04 311/week @ 2024-03-11 313/week @ 2024-03-18

1,139 downloads per month
Used in 17 crates (14 directly)

MIT license

125KB
2.5K SLoC

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.

Dependencies

~3MB
~56K SLoC