Compare commits

...

4 Commits

Author SHA1 Message Date
71d298ea68 Merge pull request 'Update Rust crate schemars to 1.1.0' (#243) from renovate/schemars-1.x into master
All checks were successful
continuous-integration/drone/push Build is passing
2025-11-07 00:11:29 +00:00
836f6f2494 Update Rust crate schemars to 1.1.0
All checks were successful
continuous-integration/drone/push Build is passing
continuous-integration/drone/pr Build is passing
2025-11-06 00:12:05 +00:00
6c306407e9 Merge pull request 'Update Rust crate schemars to 1.0.5' (#242) from renovate/schemars-1.x into master
All checks were successful
continuous-integration/drone/push Build is passing
2025-11-04 00:13:25 +00:00
0786b77967 Update Rust crate schemars to 1.0.5
All checks were successful
continuous-integration/drone/push Build is passing
continuous-integration/drone/pr Build is passing
2025-11-03 00:10:03 +00:00
2 changed files with 5 additions and 5 deletions

8
Cargo.lock generated
View File

@@ -1742,9 +1742,9 @@ dependencies = [
[[package]] [[package]]
name = "schemars" name = "schemars"
version = "1.0.4" version = "1.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "82d20c4491bc164fa2f6c5d44565947a52ad80b9505d8e36f8d54c27c739fcd0" checksum = "9558e172d4e8533736ba97870c4b2cd63f84b382a3d6eb063da41b91cce17289"
dependencies = [ dependencies = [
"dyn-clone", "dyn-clone",
"ref-cast", "ref-cast",
@@ -1755,9 +1755,9 @@ dependencies = [
[[package]] [[package]]
name = "schemars_derive" name = "schemars_derive"
version = "1.0.4" version = "1.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "33d020396d1d138dc19f1165df7545479dcd58d93810dc5d646a16e55abefa80" checksum = "301858a4023d78debd2353c7426dc486001bddc91ae31a76fb1f55132f7e2633"
dependencies = [ dependencies = [
"proc-macro2", "proc-macro2",
"quote", "quote",

View File

@@ -11,7 +11,7 @@ env_logger = "0.11.8"
anyhow = "1.0.100" anyhow = "1.0.100"
serde = { version = "1.0.228", features = ["derive"] } serde = { version = "1.0.228", features = ["derive"] }
serde_json = "1.0.145" serde_json = "1.0.145"
schemars = "1.0.4" schemars = "1.1.0"
tokio = { version = "1.48.0", features = ["full"] } tokio = { version = "1.48.0", features = ["full"] }
kube = { version = "2.0.1", features = ["runtime", "derive"] } kube = { version = "2.0.1", features = ["runtime", "derive"] }
k8s-openapi = { version = "0.26.0", features = ["v1_31"] } k8s-openapi = { version = "0.26.0", features = ["v1_31"] }