From 1fe7bba070cc74008cc8165030b01336cb9acbe1 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 28 Nov 2022 14:43:30 +0000 Subject: [PATCH] build(deps): update object requirement from 0.29 to 0.30 Updates the requirements on [object](https://github.com/gimli-rs/object) to permit the latest version. - [Release notes](https://github.com/gimli-rs/object/releases) - [Changelog](https://github.com/gimli-rs/object/blob/master/CHANGELOG.md) - [Commits](https://github.com/gimli-rs/object/compare/0.29.0...0.30.0) --- updated-dependencies: - dependency-name: object dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- aya/Cargo.toml | 2 +- test/integration-test/Cargo.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/aya/Cargo.toml b/aya/Cargo.toml index c5b2f01d..996948a7 100644 --- a/aya/Cargo.toml +++ b/aya/Cargo.toml @@ -13,7 +13,7 @@ edition = "2021" [dependencies] libc = { version = "0.2.105" } thiserror = "1" -object = { version = "0.29", default-features = false, features = ["std", "read_core", "elf"] } +object = { version = "0.30", default-features = false, features = ["std", "read_core", "elf"] } bitflags = "1.2.1" bytes = "1" lazy_static = "1" diff --git a/test/integration-test/Cargo.toml b/test/integration-test/Cargo.toml index 74b5801b..4bd31872 100644 --- a/test/integration-test/Cargo.toml +++ b/test/integration-test/Cargo.toml @@ -14,5 +14,5 @@ integration-test-macros = { path = "../integration-test-macros" } lazy_static = "1" libc = { version = "0.2.105" } log = "0.4" -object = { version = "0.29", default-features = false, features = ["std", "read_core", "elf"] } +object = { version = "0.30", default-features = false, features = ["std", "read_core", "elf"] } regex = "1"