From cc48523347c2be5520779ef8eeadc6d3a68649d0 Mon Sep 17 00:00:00 2001 From: Tamir Duberstein Date: Mon, 18 Sep 2023 11:46:01 -0400 Subject: [PATCH] Cargo.toml: remove redundant keys `default-features = false` is already in the root Cargo.toml. --- aya-obj/Cargo.toml | 7 ++----- aya/Cargo.toml | 6 +----- 2 files changed, 3 insertions(+), 10 deletions(-) diff --git a/aya-obj/Cargo.toml b/aya-obj/Cargo.toml index ec830e8d..992793f6 100644 --- a/aya-obj/Cargo.toml +++ b/aya-obj/Cargo.toml @@ -15,11 +15,8 @@ bytes = { workspace = true } core-error = { workspace = true, default-features = true } hashbrown = { workspace = true, default-features = true } log = { workspace = true } -object = { workspace = true, default-features = false, features = [ - "elf", - "read_core", -] } -thiserror = { workspace = true, default-features = false } +object = { workspace = true, features = ["elf", "read_core"] } +thiserror = { workspace = true } [dev-dependencies] assert_matches = { workspace = true } diff --git a/aya/Cargo.toml b/aya/Cargo.toml index 9cdae143..cec83a0f 100644 --- a/aya/Cargo.toml +++ b/aya/Cargo.toml @@ -20,11 +20,7 @@ bytes = { workspace = true } lazy_static = { workspace = true } libc = { workspace = true } log = { workspace = true } -object = { workspace = true, default-features = false, features = [ - "elf", - "read_core", - "std", -] } +object = { workspace = true, features = ["elf", "read_core", "std"] } thiserror = { workspace = true } tokio = { workspace = true, features = ["rt"], optional = true }