-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
49 lines (44 loc) · 1.24 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
[package]
name = "mrblackjack"
version = "0.1.24"
authors = ["Ole Kliemann <[email protected]>"]
edition = "2021"
license = "Apache-2.0"
description = "Simple framework for testing Kubernetes operators"
repository = "https://github.com/olekli/mrblackjack"
readme = "README.md"
keywords = ["kubernetes", "end-to-end-testing", "testing", "operator"]
categories = ["command-line-utilities", "development-tools::testing"]
[dependencies]
env_logger = "0.11.5"
futures = "0.3.31"
k8s-openapi = { version = "0.23.0", features = ["v1_31"] }
kube = { version = "0.96.0", features = ["runtime", "derive"] }
log = "0.4.22"
schemars = "0.8.21"
serde = { version = "1.0.214", features = ["derive"] }
serde_json = "1.0.132"
serde_yaml = "0.9.34"
thiserror = "1.0.68"
tokio = { version = "1.41.0", features = ["full"] }
tokio-util = "0.7.12"
random_word = { version = "0.4.3", features = ["en"] }
fmt = "0.1.0"
clap = { version = "4.5.20", features = ["derive"] }
colored = "2.1.0"
once_cell = "1.20.2"
shell-words = "1.1.0"
envsubst = "0.2.1"
tempfile = "3.14.0"
display_json = "0.2.1"
[dev-dependencies]
rstest = "0.17.0"
[lib]
name = "blackjack"
path = "src/lib.rs"
[[bin]]
name = "blackjack"
path = "src/bin.rs"
[[bin]]
name = "make-schema"
path = "src/make_schema.rs"