-
Notifications
You must be signed in to change notification settings - Fork 6
/
Cargo.toml
59 lines (56 loc) · 1.71 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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
[workspace]
members = ["rust/*"]
default-members = ["rust/operator-binary"]
resolver = "2"
[workspace.package]
version = "0.0.0-dev"
authors = ["Stackable GmbH <[email protected]>"]
license = "OSL-3.0"
edition = "2021"
repository = "https://github.com/stackabletech/secret-operator"
[workspace.dependencies]
anyhow = "1.0"
async-trait = "0.1"
bindgen = "0.70"
built = { version = "0.7", features = ["chrono", "git2"] }
byteorder = "1.5"
clap = "4.5"
futures = { version = "0.3", features = ["compat"] }
h2 = "0.4"
ldap3 = { version = "0.11", default-features = false, features = [
"gssapi",
"tls",
] }
libc = "0.2"
native-tls = "0.2"
openssl = "0.10"
p12 = "0.6"
pin-project = "1.1"
pkg-config = "0.3"
prost = "0.13"
prost-types = "0.13"
rand = "0.8"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
serde_yaml = "0.9"
snafu = "0.8"
socket2 = { version = "0.5", features = ["all"] }
stackable-operator = { git = "https://github.com/stackabletech/operator-rs.git", tag = "stackable-operator-0.80.0", features = [
"time",
] }
strum = { version = "0.26", features = ["derive"] }
sys-mount = { version = "3.0", default-features = false }
tempfile = "3.12"
time = { version = "0.3", features = ["parsing"] }
tokio = { version = "1.40", features = ["full"] }
tokio-stream = { version = "0.1", features = ["net"] }
tonic = "0.12"
tonic-build = "0.12"
tonic-reflection = "0.12"
tracing = "0.1"
tracing-subscriber = "0.3"
uuid = { version = "1.10.0", features = ["v4"] }
yasna = "0.5"
[patch."https://github.com/stackabletech/operator-rs.git"]
# stackable-operator = { path = "../operator-rs/crates/stackable-operator" }
# stackable-operator = { git = "https://github.com/stackabletech//operator-rs.git", branch = "main" }