-
-
Notifications
You must be signed in to change notification settings - Fork 17
Expand file tree
/
Copy pathCargo.toml
More file actions
46 lines (41 loc) · 1.21 KB
/
Cargo.toml
File metadata and controls
46 lines (41 loc) · 1.21 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
[package]
name = "stackable-webhook"
version = "0.8.1"
authors.workspace = true
license.workspace = true
edition.workspace = true
repository.workspace = true
[dependencies]
stackable-certs = { path = "../stackable-certs", features = ["rustls"] }
stackable-shared = { path = "../stackable-shared" }
stackable-telemetry = { path = "../stackable-telemetry" }
arc-swap.workspace = true
async-trait.workspace = true
axum.workspace = true
futures-util.workspace = true
hyper-util.workspace = true
hyper.workspace = true
k8s-openapi.workspace = true
kube.workspace = true
opentelemetry.workspace = true
opentelemetry-semantic-conventions.workspace = true
rand.workspace = true
serde.workspace = true
serde_json.workspace = true
snafu.workspace = true
tokio-rustls.workspace = true
tokio.workspace = true
tower-http.workspace = true
tower.workspace = true
tracing.workspace = true
tracing-opentelemetry.workspace = true
x509-cert.workspace = true
[dev-dependencies]
# Only needed for doc tests
stackable-operator = { path = "../stackable-operator" }
clap.workspace = true
[lints]
workspace = true
# Only needed for tests, this is a false positive of "cargo udeps"
[package.metadata.cargo-udeps.ignore]
development = ["stackable-operator"]