-
Notifications
You must be signed in to change notification settings - Fork 41
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
5 changed files
with
35 additions
and
10 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
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
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 |
---|---|---|
@@ -1,11 +1,11 @@ | ||
[package] | ||
name = "k8s-openapi" | ||
version = "0.22.0" | ||
version = "0.23.0" | ||
license = "Apache-2.0" | ||
authors = ["Arnav Singh <[email protected]>"] | ||
categories = ["api-bindings", "web-programming::http-client"] | ||
description = "Bindings for the Kubernetes client API" | ||
documentation = "https://arnavion.github.io/k8s-openapi/v0.22.x/k8s_openapi/" | ||
documentation = "https://arnavion.github.io/k8s-openapi/v0.23.x/k8s_openapi/" | ||
edition = "2021" | ||
keywords = ["client", "kubernetes", "k8s", "http"] | ||
readme = "README.md" | ||
|
@@ -25,7 +25,7 @@ include = [ | |
# to enumerate all env vars looking for one with `DEP_K8S_OPENAPI_` prefix and `_VERSION` suffix, instead of looking it up by its whole name. | ||
# | ||
# See https://github.com/rust-lang/cargo/issues/3544 for being able to pass metadata to downstream without setting this key. | ||
links = "k8s-openapi-0.22.0" | ||
links = "k8s-openapi-0.23.0" | ||
|
||
[dependencies] | ||
base64 = { version = "0.22", default-features = false, features = [ | ||
|
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 |
---|---|---|
@@ -1,11 +1,11 @@ | ||
[package] | ||
name = "k8s-openapi-codegen-common" | ||
version = "0.22.0" | ||
version = "0.23.0" | ||
license = "Apache-2.0" | ||
authors = ["Arnav Singh <[email protected]>"] | ||
categories = ["api-bindings", "web-programming::http-client"] | ||
description = "Common code for the k8s-openapi code generator and k8s-openapi-derive" | ||
documentation = "https://arnavion.github.io/k8s-openapi/v0.22.x/k8s_openapi_codegen_common/" | ||
documentation = "https://arnavion.github.io/k8s-openapi/v0.23.x/k8s_openapi_codegen_common/" | ||
edition = "2021" | ||
keywords = ["client", "kubernetes", "k8s", "http"] | ||
readme = "README.md" | ||
|
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 |
---|---|---|
@@ -1,11 +1,11 @@ | ||
[package] | ||
name = "k8s-openapi-derive" | ||
version = "0.22.0" | ||
version = "0.23.0" | ||
license = "Apache-2.0" | ||
authors = ["Arnav Singh <[email protected]>"] | ||
categories = ["api-bindings", "web-programming::http-client"] | ||
description = "Custom derives for the Kubernetes client API" | ||
documentation = "https://arnavion.github.io/k8s-openapi/v0.22.x/k8s_openapi_derive/" | ||
documentation = "https://arnavion.github.io/k8s-openapi/v0.23.x/k8s_openapi_derive/" | ||
edition = "2021" | ||
keywords = ["client", "kubernetes", "k8s", "http"] | ||
readme = "README.md" | ||
|
@@ -18,7 +18,7 @@ include = [ | |
] | ||
|
||
[dependencies] | ||
k8s-openapi-codegen-common = { version = "=0.22.0", path = "../k8s-openapi-codegen-common" } | ||
k8s-openapi-codegen-common = { version = "=0.23.0", path = "../k8s-openapi-codegen-common" } | ||
proc-macro2 = { version = "1", default-features = false, features = ["proc-macro"] } | ||
quote = { version = "1", default-features = false } | ||
syn = { version = "2", default-features = false, features = [ | ||
|