Skip to content

Commit

Permalink
need schemars feature for integration tests
Browse files Browse the repository at this point in the history
Signed-off-by: clux <[email protected]>
  • Loading branch information
clux committed Mar 7, 2024
1 parent 765457a commit d43c4a3
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,6 @@ name = "kopium"
path = "src/lib.rs"

[dependencies]
k8s-openapi = { version = "0.21.1", features = ["latest"] }
tokio = { version = "1.26.0", features = ["full"] }
anyhow = "1.0.80"
log = "0.4.21"
Expand All @@ -41,10 +40,20 @@ heck = "0.4.1"
syn = "2.0.52"
libc = "0.2.153"

[dependencies.k8s-openapi]
version = "0.21.1"
default-features = false
features = ["latest"]

[dependencies.kube]
version = "0.88.1"
features = ["derive"]

[dev-dependencies]
schemars = "0.8.16"
typed-builder = "0.18.1"

[dev-dependencies.k8s-openapi]
version = "0.21.1"
default-features = false
features = ["latest", "schemars"]

0 comments on commit d43c4a3

Please sign in to comment.