Skip to content

Commit

Permalink
v0.7.0 (#24)
Browse files Browse the repository at this point in the history
* Update kube to v0.75
* Update k8s-openapi to v0.16
  • Loading branch information
olix0r authored Sep 23, 2022
1 parent 7031615 commit 94903a7
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 21 deletions.
22 changes: 9 additions & 13 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,12 +1,9 @@
[workspace]
members = [
".",
"integration",
]
members = [".", "integration"]

[package]
name = "k8s-gateway-api"
version = "0.6.0"
version = "0.7.0"
edition = "2021"
license = "Apache-2.0"
repository = "https://github.com/linkerd/k8s-gateway-api"
Expand All @@ -19,18 +16,17 @@ default = []
experimental = []

[dependencies]
kube = { version = "0.74", default-features = false, features = ["derive"] }
k8s-openapi = { version = "0.15", features = ["schemars"] }
kube = { version = "0.75", default-features = false, features = ["derive"] }
k8s-openapi = { version = "0.16", features = ["schemars"] }
schemars = { version = "0.8", features = ["derive"] }
serde = { version = "1", features = ["derive"] }
serde_json = "1"

[dev-dependencies]
k8s-openapi = { version = "0.15", default-features = false, features = ["v1_21"] }
[dev-dependencies.k8s-openapi]
version = "0.16"
default-features = false
features = ["v1_21"]

[package.metadata.docs.rs]
rustdoc-args = ["--cfg", "docsrs"]
features = [
"experimental",
"k8s-openapi/v1_24",
]
features = ["experimental", "k8s-openapi/v1_25"]
11 changes: 3 additions & 8 deletions integration/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,17 +6,12 @@ license = "Apache-2.0"
publish = false

[dev-dependencies]
k8s-openapi = { version = "0.15", features = ["v1_21"] }
k8s-openapi = { version = "0.16", features = ["v1_21"] }
tokio = { version = "1", features = ["macros", "rt"] }
tracing = "0.1"
k8s-gateway-api = { path = ".." }

[dev-dependencies.kube]
version = "0.74"
version = "0.75"
default-features = false
features = [
"client",
"openssl-tls",
"runtime",
"ws",
]
features = ["client", "openssl-tls", "runtime", "ws"]

0 comments on commit 94903a7

Please sign in to comment.