-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Tag a new patch release Signed-off-by: Flavio Castelli <[email protected]>
- Loading branch information
Showing
1 changed file
with
7 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,18 +2,18 @@ | |
name = "kubewarden-policy-sdk" | ||
description = "Kubewarden Policy SDK for the Rust language" | ||
repository = "https://github.com/kubewarden/policy-sdk-rust" | ||
version = "0.9.7" | ||
version = "0.9.8" | ||
authors = [ | ||
"Flavio Castelli <[email protected]>", | ||
"Rafael Fernández López <[email protected]>", | ||
"Víctor Cuadrado Juan <[email protected]>" | ||
"Víctor Cuadrado Juan <[email protected]>", | ||
] | ||
edition = "2021" | ||
license = "Apache-2.0" | ||
|
||
[features] | ||
default = [ "cluster-context" ] | ||
cluster-context = [ "k8s-openapi" ] | ||
default = ["cluster-context"] | ||
cluster-context = ["k8s-openapi"] | ||
|
||
[package.metadata.docs.rs] | ||
features = ["k8s-openapi/v1_27"] | ||
|
@@ -52,6 +52,7 @@ chrono = { version = "0.4", default-features = false } | |
assert-json-diff = "2.0.2" | ||
mockall = "0.11.4" | ||
serial_test = "2.0.0" | ||
k8s-openapi = { version = "0.20.0", default-features = false, features = [ "v1_27" ] } | ||
k8s-openapi = { version = "0.20.0", default-features = false, features = [ | ||
"v1_27", | ||
] } | ||
jsonpath_lib = "0.3.0" | ||
|