-
-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathCargo.toml
More file actions
57 lines (52 loc) · 1.45 KB
/
Copy pathCargo.toml
File metadata and controls
57 lines (52 loc) · 1.45 KB
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
[package]
name = "stackable-secret-operator"
description = "Stackable Operator for managing credentials"
version.workspace = true
authors.workspace = true
license.workspace = true
edition.workspace = true
repository.workspace = true
publish = false
[dependencies]
stackable-krb5-provision-keytab = { path = "../krb5-provision-keytab" }
stackable-secret-operator-utils = { path = "../utils", features = ["crd"] }
p12 = { path = "../p12" }
anyhow.workspace = true
async-trait.workspace = true
chrono.workspace = true
clap.workspace = true
futures.workspace = true
h2.workspace = true
# We don't directly use this crate, we declare it here to use feature unification
kube-runtime.workspace = true
libc.workspace = true
openssl.workspace = true
pin-project.workspace = true
prost-types.workspace = true
prost.workspace = true
serde_json.workspace = true
serde_yaml.workspace = true
serde.workspace = true
snafu.workspace = true
socket2.workspace = true
stackable-operator.workspace = true
strum.workspace = true
sys-mount.workspace = true
tempfile.workspace = true
time.workspace = true
tokio-stream.workspace = true
tokio.workspace = true
tonic.workspace = true
tonic-prost.workspace = true
tonic-reflection.workspace = true
tracing.workspace = true
uuid.workspace = true
rand.workspace = true
const_format.workspace = true
[dev-dependencies]
indoc.workspace = true
serde_yaml.workspace = true
[build-dependencies]
built.workspace = true
tonic-prost-build.workspace = true
[features]