-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
61 lines (55 loc) · 1.77 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
50
51
52
53
54
55
56
57
58
59
60
61
[package]
name = "self_service_operators"
version = "0.1.15"
authors = ["Daniel Bornkessel <[email protected]>"]
edition = "2018"
description = "s5 operator"
repository = "https://gitlab.innoq.com/daniel/self_service_operators"
readme = "README.md"
# need this for cargo-build-dependencies`
[lib]
name = "self_service_operators"
path = "src/lib.rs"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
http = "0.2.3"
anyhow = "^1.0.40"
async-trait = "0.1"
chrono = "0.4"
clap = "3.0.0-beta.2"
env_logger = "0.8.3"
futures = { version="^0.3", default-features=false }
k8s-openapi = { version="0.11", default-features=false, features=["v1_20"] }
kube = { version="0.55", default-features=false, features=["derive", "native-tls"] }
kube-derive = "0.55"
kube-runtime = { version="0.55", default-features=false }
log = "0.4"
pin-utils = "0.1.0"
rand = "0.8"
schemars = "0.8.0"
serde = { version="1.0", features=["derive"] }
serde_json = "1.0"
serde_yaml = "0.8"
tokio = { version="1.0", features=["macros", "rt-multi-thread", "time"] }
rcgen = "0.8.9"
handlebars = "3"
[build-dependencies]
serde_yaml = "0.8"
anyhow = "^1.0.40"
[dependencies.krator-derive]
# path = "../krustlet/crates/krator-derive"
features = ["admission-webhook"]
version = "0.2.0"
# git = "https://github.com/deislabs/krustlet.git"
# branch = "main"
[dependencies.krator] # A Kubernetes operator implementation in Rust
version = "0.3.0"
features = ["admission-webhook", "derive-admission-webhook"]
# git = "https://github.com/deislabs/krustlet.git"
# branch = "main"
# git = "file:///Users/kesselborn/dev/innoq/krustlet"
# rev = "315cb44fb37e35736fb9a06d3eeec9896d65e9a3"
# path = "../krustlet/crates/krator"
default-features = false
[dev-dependencies]
serial_test = "*"