diff --git a/Cargo.lock b/Cargo.lock index f22735e6..b725a88a 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -298,17 +298,18 @@ dependencies = [ [[package]] name = "cargo-util-schemas" -version = "0.10.1" +version = "0.14.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "549c00f5bb23fdaf26135d747d7530563402a101f1887a5a1916afe2c09cf229" +checksum = "37156912bbbffb4d28a143546837050f267c218c0862258385d51a482e6646f2" dependencies = [ + "jiff", "semver", "serde", "serde-untagged", "serde-value", "thiserror", - "toml 0.9.12+spec-1.1.0", - "unicode-xid", + "toml", + "unicode-ident", "url", ] @@ -1617,7 +1618,7 @@ dependencies = [ "serde_json", "tar", "tokio", - "toml 1.1.2+spec-1.1.0", + "toml", "tracing", "tracing-forest", "tracing-opentelemetry 0.33.0", @@ -2387,6 +2388,7 @@ dependencies = [ "futures-util", "opentelemetry 0.32.0", "percent-encoding", + "portable-atomic", "rand 0.9.4", "thiserror", "tokio", @@ -3485,17 +3487,6 @@ dependencies = [ "tokio", ] -[[package]] -name = "toml" -version = "0.9.12+spec-1.1.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "cf92845e79fc2e2def6a5d828f0801e29a2f8acc037becc5ab08595c7d5e9863" -dependencies = [ - "serde_core", - "serde_spanned", - "toml_datetime 0.7.5+spec-1.1.0", -] - [[package]] name = "toml" version = "1.1.2+spec-1.1.0" @@ -3505,21 +3496,12 @@ dependencies = [ "indexmap", "serde_core", "serde_spanned", - "toml_datetime 1.1.1+spec-1.1.0", + "toml_datetime", "toml_parser", "toml_writer", "winnow", ] -[[package]] -name = "toml_datetime" -version = "0.7.5+spec-1.1.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "92e1cfed4a3038bc5a127e35a2d360f145e1f4b971b551a2ba5fd7aedf7e1347" -dependencies = [ - "serde_core", -] - [[package]] name = "toml_datetime" version = "1.1.1+spec-1.1.0" @@ -3536,7 +3518,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "a82418ca169e235e6c399a84e395ab6debeb3bc90edc959bf0f48647c6a32d1b" dependencies = [ "indexmap", - "toml_datetime 1.1.1+spec-1.1.0", + "toml_datetime", "toml_parser", "winnow", ] diff --git a/src/hyperlight_wasm_aot/Cargo.toml b/src/hyperlight_wasm_aot/Cargo.toml index c3bb8c61..dd27da64 100644 --- a/src/hyperlight_wasm_aot/Cargo.toml +++ b/src/hyperlight_wasm_aot/Cargo.toml @@ -15,7 +15,7 @@ Application to precompile WebAssembly binaries to for hyperlight-wasm. wasmtime = { version = "36.0.9", default-features = false, features = ["cranelift", "pulley", "runtime", "component-model" ] } clap = { version = "4.6", features = ["derive"] } cargo_metadata = "0.23" -cargo-util-schemas = "=0.10.1" +cargo-util-schemas = "=0.14.0" object = { version = "0.39.1", default-features = false, features = ["read_core", "elf"] } [features]