-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
40 lines (38 loc) · 1.09 KB
/
Cargo.toml
File metadata and controls
40 lines (38 loc) · 1.09 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
[package]
name = "sinker"
version = "0.1.0"
license = "MIT"
edition = "2021"
keywords = ["kubernetes"]
repository = "https://github.com/influxdata/sinker"
authors = ["InfluxData"]
description = "Copy k8s resources (or parts thereof) across clusters"
[dependencies]
clap = { version = "^4.5.53", features = ["derive", "help", "env", "std"] }
futures = "^0.3.31"
kube = { version = "^1.1.0", features = ["runtime", "derive", "unstable-runtime"] }
k8s-openapi = { version = "^0.25.0", features = ["v1_33", "schemars"] }
kubert = { version = "^0.25.0", features = [
"clap",
"runtime",
"server",
"rustls-tls",
"prometheus-client",
] }
tokio = { version = "^1.49.0", features = ["full"] }
anyhow = { version = "^1.0.100", features = ["backtrace"] }
tracing = "^0.1.44"
schemars = "^0.8.22"
serde = { version = "^1.0.228", features = ["derive"] }
serde_json = "^1.0.149"
serde_yaml = "^0.9.34"
thiserror = "^2.0.18"
serde_json_path = "^0.7.2"
tokio-context = "^0.1.3"
tokio-stream = "^0.1.18"
regex = "^1.12.3"
[dev-dependencies]
rstest = "^0.26.1"
once_cell = "^1.21.3"
chrono = "^0.4.42"
rand = "^0.9.2"