From 4c78f7f1a014cf54d54c805233a0f29eb1ca5eeb Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 25 Apr 2023 21:18:51 +0000 Subject: [PATCH] build(deps): update object requirement from 0.30 to 0.31 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.30.0...0.31.0) --- updated-dependencies: - dependency-name: object dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- aya-obj/Cargo.toml | 2 +- aya/Cargo.toml | 2 +- test/integration-test/Cargo.toml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/aya-obj/Cargo.toml b/aya-obj/Cargo.toml index a68467710..d20b19301 100644 --- a/aya-obj/Cargo.toml +++ b/aya-obj/Cargo.toml @@ -13,7 +13,7 @@ edition = "2021" [dependencies] bytes = "1" log = "0.4" -object = { version = "0.30", default-features = false, features = ["read_core", "elf"] } +object = { version = "0.31", default-features = false, features = ["read_core", "elf"] } hashbrown = { version = "0.13" } thiserror = { version = "1", default-features = false } core-error = { version = "0.0.0" } diff --git a/aya/Cargo.toml b/aya/Cargo.toml index 9b68dd1f9..8e407fa13 100644 --- a/aya/Cargo.toml +++ b/aya/Cargo.toml @@ -14,7 +14,7 @@ edition = "2021" libc = { version = "0.2.105" } aya-obj = { path = "../aya-obj", version = "0.1.0", features = ["std"] } thiserror = "1" -object = { version = "0.30", default-features = false, features = ["std", "read_core", "elf"] } +object = { version = "0.31", 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 bfcc5d0b5..6b02b4a8e 100644 --- a/test/integration-test/Cargo.toml +++ b/test/integration-test/Cargo.toml @@ -15,7 +15,7 @@ integration-test-macros = { path = "../integration-test-macros" } lazy_static = "1" libc = { version = "0.2.105" } log = "0.4" -object = { version = "0.30", default-features = false, features = ["std", "read_core", "elf"] } +object = { version = "0.31", default-features = false, features = ["std", "read_core", "elf"] } rbpf = "0.1.0" regex = "1" tempfile = "3.3.0"