We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1bb5bd4 commit 76b6a82Copy full SHA for 76b6a82
Cargo.toml
@@ -35,6 +35,11 @@ members = [
35
36
resolver = "2"
37
38
+[workspace.lints.clippy]
39
+unwrap_used = "warn"
40
+arithmetic_side_effects = "warn"
41
+indexing_slicing = "warn"
42
+
43
[workspace.dependencies]
44
mina-p2p-messages = { path = "mina-p2p-messages" }
45
ledger = { path = "ledger", package = "mina-tree" }
clippy.toml
@@ -0,0 +1 @@
1
+allow-unwrap-in-tests=true
node/Cargo.toml
@@ -4,6 +4,9 @@ version = "0.11.0"
4
edition = "2021"
5
license = "Apache-2.0"
6
7
+[lints]
8
+workspace = true
9
10
[dependencies]
11
rand = "0.8.0"
12
serde = "1.0.147"
0 commit comments