From 28683f48bb65cd5b2c69fae435a97464eb975b55 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 11 Jul 2025 04:19:24 +0000 Subject: [PATCH] Bump cargo_metadata from 0.20.0 to 0.21.0 Bumps [cargo_metadata](https://github.com/oli-obk/cargo_metadata) from 0.20.0 to 0.21.0. - [Release notes](https://github.com/oli-obk/cargo_metadata/releases) - [Changelog](https://github.com/oli-obk/cargo_metadata/blob/main/CHANGELOG.md) - [Commits](https://github.com/oli-obk/cargo_metadata/compare/0.20.0...0.21.0) --- updated-dependencies: - dependency-name: cargo_metadata dependency-version: 0.21.0 dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- Cargo.lock | 24 ++++++++++++++++++++---- src/hyperlight_wasm_aot/Cargo.toml | 2 +- 2 files changed, 21 insertions(+), 5 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index a60f497..06e3afe 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -338,15 +338,31 @@ dependencies = [ "url", ] +[[package]] +name = "cargo-util-schemas" +version = "0.8.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7dc1a6f7b5651af85774ae5a34b4e8be397d9cf4bc063b7e6dbd99a841837830" +dependencies = [ + "semver", + "serde", + "serde-untagged", + "serde-value", + "thiserror 2.0.12", + "toml 0.8.23", + "unicode-xid", + "url", +] + [[package]] name = "cargo_metadata" -version = "0.20.0" +version = "0.21.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4f7835cfc6135093070e95eb2b53e5d9b5c403dc3a6be6040ee026270aa82502" +checksum = "5cfca2aaa699835ba88faf58a06342a314a950d2b9686165e038286c30316868" dependencies = [ "camino", "cargo-platform", - "cargo-util-schemas", + "cargo-util-schemas 0.8.2", "semver", "serde", "serde_json", @@ -1376,7 +1392,7 @@ dependencies = [ name = "hyperlight-wasm-aot" version = "0.7.0" dependencies = [ - "cargo-util-schemas", + "cargo-util-schemas 0.2.0", "cargo_metadata", "clap", "wasmtime", diff --git a/src/hyperlight_wasm_aot/Cargo.toml b/src/hyperlight_wasm_aot/Cargo.toml index cfb5cf1..7cfb63e 100644 --- a/src/hyperlight_wasm_aot/Cargo.toml +++ b/src/hyperlight_wasm_aot/Cargo.toml @@ -14,5 +14,5 @@ Application to precompile WebAssembly binaries to for hyperlight-wasm. [dependencies] wasmtime = { version = "34.0.1", default-features = false, features = ["cranelift", "runtime", "component-model" ] } clap = "4.5" -cargo_metadata = "0.20" +cargo_metadata = "0.21" cargo-util-schemas = "=0.2.0"