-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
41 lines (39 loc) · 1.09 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
[package]
name = "sinker"
version = "0.1.0"
license = "MIT"
edition = "2021"
keywords = ["kubernetes"]
repository = "https://github.com/influxdata/sinker"
authors = ["Marko Mikulicic <[email protected]>"]
description = "Copy k8s resources (or parts thereof) across clusters"
[dependencies]
clap = { version = "4.5", features = ["derive", "help", "env", "std"] }
futures = "0.3"
kube = { version = "0.87.2", features = ["runtime", "derive", "unstable-runtime"] }
kube-derive = "0.87.2"
k8s-openapi = { version = "0.20.0", features = ["v1_26", "schemars"] }
kubert = { version = "0.21.2", features = [
"clap",
"runtime",
"server",
"rustls-tls",
"prometheus-client",
] }
tokio = { version = "1.40", features = ["full"] }
anyhow = { version = "1", features = ["backtrace"] }
tracing = "0.1"
schemars = "0.8.21"
serde = { version = "1", features = ["derive"] }
serde_json = "1"
serde_yaml = "0.9.34"
thiserror = "1"
serde_json_path = "0.6.7"
backoff = "0.4.*"
tokio-context = "0.1.*"
tokio-stream = "0.1.*"
[dev-dependencies]
rstest = "0.22.0"
once_cell = "1.19.*"
chrono = "0.4.*"
rand = "0.8.5"