-
-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathCargo.toml
49 lines (45 loc) · 1.24 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
[package]
name = "stackable-operator"
description = "Stackable Operator Framework"
version = "0.78.0"
authors.workspace = true
license.workspace = true
edition.workspace = true
repository.workspace = true
[features]
time = ["dep:time"]
[dependencies]
stackable-operator-derive = { path = "../stackable-operator-derive" }
stackable-shared = { path = "../stackable-shared" }
chrono.workspace = true
clap.workspace = true
const_format.workspace = true
derivative.workspace = true
dockerfile-parser.workspace = true
either.workspace = true
futures.workspace = true
indexmap.workspace = true
json-patch.workspace = true
k8s-openapi.workspace = true
kube.workspace = true
opentelemetry_sdk.workspace = true
opentelemetry-jaeger.workspace = true
product-config.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
time = { workspace = true, optional = true }
tokio.workspace = true
tracing.workspace = true
tracing-appender.workspace = true
tracing-opentelemetry.workspace = true
tracing-subscriber.workspace = true
url.workspace = true
[dev-dependencies]
rstest.workspace = true
tempfile.workspace = true