From 1d15dce922bbee486280711e9f97ca1940617a94 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Wed, 1 May 2024 13:55:27 +0000 Subject: [PATCH] fix(deps): update rust crate anyhow to 1.0.82 --- libraries/native_model/Cargo.toml | 2 +- libraries/native_model/tests_crate/Cargo.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/libraries/native_model/Cargo.toml b/libraries/native_model/Cargo.toml index 3617d65a..3d7767b2 100644 --- a/libraries/native_model/Cargo.toml +++ b/libraries/native_model/Cargo.toml @@ -17,7 +17,7 @@ members = ["native_model_macro"] [dependencies] zerocopy = { version = "0.7.32", features = [ "derive"] } thiserror = "1.0" -anyhow = "1.0" +anyhow = "1.0.82" native_model_macro = { version = "0.4.14", path = "native_model_macro" } serde = { version = "1.0", features = ["derive"], optional = true } diff --git a/libraries/native_model/tests_crate/Cargo.toml b/libraries/native_model/tests_crate/Cargo.toml index c6d07850..9bea9e1b 100644 --- a/libraries/native_model/tests_crate/Cargo.toml +++ b/libraries/native_model/tests_crate/Cargo.toml @@ -10,7 +10,7 @@ native_model = { path = "../", no-default-features = true } serde = { version = "1.0", features = ["derive"], optional = true } bincode = { version = "2.0.0-rc.3", features = ["serde"] , optional = true } postcard = { version = "1.0", features = ["alloc"], optional = true } -anyhow = "1.0" +anyhow = "1.0.82" [features]