-
-
Notifications
You must be signed in to change notification settings - Fork 17
Expand file tree
/
Copy pathCargo.toml
More file actions
64 lines (58 loc) · 1.73 KB
/
Cargo.toml
File metadata and controls
64 lines (58 loc) · 1.73 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
58
59
60
61
62
63
64
[package]
name = "stackable-operator"
description = "Stackable Operator Framework"
version = "0.108.0"
authors.workspace = true
license.workspace = true
edition.workspace = true
repository.workspace = true
[features]
default = ["crds"]
full = ["crds", "certs", "time", "webhook", "kube-ws"]
crds = ["dep:stackable-versioned"]
certs = ["dep:stackable-certs"]
time = ["stackable-shared/time"]
webhook = ["dep:stackable-webhook"]
kube-ws = ["kube/ws"]
[dependencies]
stackable-certs = { path = "../stackable-certs", optional = true }
stackable-operator-derive = { path = "../stackable-operator-derive" }
stackable-shared = { path = "../stackable-shared", features = ["jiff"] }
stackable-telemetry = { path = "../stackable-telemetry", features = ["clap"] }
stackable-versioned = { path = "../stackable-versioned", optional = true }
stackable-webhook = { path = "../stackable-webhook", optional = true }
base64.workspace = true
clap.workspace = true
const_format.workspace = true
delegate.workspace = true
dockerfile-parser.workspace = true
either.workspace = true
educe.workspace = true
futures.workspace = true
http.workspace = true
indexmap.workspace = true
jiff.workspace = true
json-patch.workspace = true
k8s-openapi.workspace = true
kube.workspace = true
product-config.workspace = true
rand.workspace = true
regex.workspace = true
schemars.workspace = true
semver.workspace = true
serde_json.workspace = true
serde_yaml.workspace = true
serde.workspace = true
snafu.workspace = true
strum.workspace = true
tokio.workspace = true
tracing.workspace = true
tracing-appender.workspace = true
tracing-subscriber.workspace = true
url.workspace = true
[dev-dependencies]
indoc.workspace = true
rstest.workspace = true
tempfile.workspace = true
[lints]
workspace = true