Skip to content

Commit 9164f79

Browse files
authored
fix: simplify Cargo.toml (#282)
Fixes # ### What Changed? This PR simplifies the `Cargo.toml` by removing "dotted keys which specify inlined table" related to issue dependabot/dependabot-core#10453. ### Reviewer Checklist - [ ] New features are tested and documented - [ ] PR updates the changelog with a description of changes - [ ] PR has one of the `changelog-X` labels (if applies) - [ ] Code deprecates any old functionality before removing it
1 parent 8acf04c commit 9164f79

File tree

1 file changed

+7
-5
lines changed

1 file changed

+7
-5
lines changed

Cargo.toml

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -37,12 +37,14 @@ repository = "https://github.com/Layr-Labs/eigensdk-rs"
3737
homepage = ""
3838
license-file = "LICENSE"
3939

40+
[workspace.lints.rust]
41+
missing_debug_implementations = "warn"
42+
missing_docs = "warn"
43+
unreachable_pub = "warn"
44+
unused_must_use = "deny"
45+
rust_2018_idioms = { level = "deny", priority = -1 }
46+
4047
[workspace.lints]
41-
rust.missing_debug_implementations = "warn"
42-
rust.missing_docs = "warn"
43-
rust.unreachable_pub = "warn"
44-
rust.unused_must_use = "deny"
45-
rust.rust_2018_idioms = { level = "deny", priority = -1 }
4648
rustdoc.all = "warn"
4749
clippy.unwrap_used = "warn"
4850
clippy.expect_used = "warn"

0 commit comments

Comments
 (0)