forked from krojew/rust-zookeeper
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
30 lines (27 loc) · 830 Bytes
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
[package]
name = "zookeeper-async"
version = "5.0.0"
authors = ["Kamil Rojewski <[email protected]>", "Nandor Kracser <[email protected]>"]
license = "MIT"
homepage = "https://github.com/krojew/rust-zookeeper"
repository = "https://github.com/krojew/rust-zookeeper"
description = "An async ZooKeeper client"
readme = "README.md"
keywords = ["zk", "zookeeper", "distributed", "coordination", "async"]
edition = "2018"
[dependencies]
async-trait = "0.1"
byteorder = "1.4"
bytes = "1.0"
derive_more = "0.99"
futures = "0.3"
lazy_static = "1.4"
num_enum = "0.7"
snowflake = "1.3"
tokio = { version = "1", features = ["rt-multi-thread", "sync", "net", "time", "io-util", "macros"] }
tracing = "0.1"
uuid = { version = "1.1", features = ["std", "v4"] }
[dev-dependencies]
tracing-subscriber = "0.3"
[features]
unstable = []