-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathCargo.toml
36 lines (32 loc) · 844 Bytes
/
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
[workspace]
members = [
"main",
"crd",
"utils",
"plugins",
"k8s",
]
resolver = "2"
[workspace.package]
authors = ["Jerry Chen <[email protected]>"]
description = "Remote Secret K8s Operator"
edition = "2021"
license = "MIT"
readme = "./README.md"
repository = "https://github.com/jerry153fish/remote-secrets"
version = "1.0.6"
[workspace.dependencies]
anyhow = "1.0"
async-trait = "0.1.85"
cached = "0.40.0"
futures = "0.3"
json_dotpath = "1.1.0"
k8s-openapi = {version = "0.16.0", features = ["v1_25"], default-features = false}
kube = {version = "0.76.0", features = ["runtime", "client", "derive"]}
lazy_static = "1.5.0"
log = "0.4.25"
log4rs = "1.3.0"
prometheus = "0.13.4"
serde = {version = "1.0.217", features = ["derive"]}
serde_json = "1.0.137"
tokio = {version = "1.43.0", features = ["macros", "rt-multi-thread"]}