-
-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathCargo.toml
33 lines (31 loc) · 1.11 KB
/
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
31
32
33
[package]
name = "stackable-zookeeper-operator"
authors = ["Stackable GmbH <info@stackable.de>"]
description = "Stackable Operator for Apache ZooKeeper"
license = "OSL-3.0"
version = "0.13.0-nightly"
edition = "2021"
repository = "https://github.com/stackabletech/zookeeper-operator"
publish = false
[dependencies]
anyhow = "1.0.58"
clap = "4.0.26"
failure = "0.1.8"
fnv = "1.0.7"
futures = { version = "0.3.21", features = ["compat"] }
semver = "1.0.12"
serde = "1.0.138"
snafu = "0.7.1"
strum = { version = "0.24.1", features = ["derive"] }
tokio = { version = "1.23.0", features = ["full"], package = "tokio" }
tokio01 = { version = "0.1.22", package = "tokio" }
tokio-executor = "0.1.10"
tokio-zookeeper = "0.1.3"
tracing = "0.1.35"
pin-project = "1.0.11"
stackable-operator = { git = "https://github.com/stackabletech/operator-rs.git", tag = "0.30.2" }
stackable-zookeeper-crd = { path = "../crd" }
[build-dependencies]
built = { version = "0.5.1", features = ["chrono", "git2"] }
stackable-operator = { git = "https://github.com/stackabletech/operator-rs.git", tag = "0.30.2" }
stackable-zookeeper-crd = { path = "../crd" }