Skip to content

Commit

Permalink
Merge pull request #812 from tamird/redundant-cargo
Browse files Browse the repository at this point in the history
Cargo.toml: remove redundant keys
  • Loading branch information
tamird committed Oct 11, 2023
2 parents ae612a0 + cc48523 commit 715d490
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 10 deletions.
7 changes: 2 additions & 5 deletions aya-obj/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }
Expand Down
6 changes: 1 addition & 5 deletions aya/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }

Expand Down

0 comments on commit 715d490

Please sign in to comment.