File tree 2 files changed +9
-1
lines changed
2 files changed +9
-1
lines changed Original file line number Diff line number Diff line change @@ -5,6 +5,8 @@ members = [
5
5
" snark" ,
6
6
]
7
7
8
+ resolver = " 2"
9
+
8
10
[profile .release ]
9
11
opt-level = 3
10
12
lto = " thin"
@@ -29,3 +31,9 @@ lto = "thin"
29
31
incremental = true
30
32
debug-assertions = true
31
33
debug = true
34
+
35
+ [patch .crates-io ]
36
+ ark-ff = { git = " https://github.com/arkworks-rs/algebra/" }
37
+ ark-ec = { git = " https://github.com/arkworks-rs/algebra/" }
38
+ ark-poly = { git = " https://github.com/arkworks-rs/algebra/" }
39
+ ark-serialize = { git = " https://github.com/arkworks-rs/algebra/" }
Original file line number Diff line number Diff line change @@ -736,7 +736,7 @@ impl<F: Field> Drop for Namespace<F> {
736
736
if let Some ( id) = self . id . as_ref ( ) {
737
737
tracing:: dispatcher:: get_default ( |dispatch| dispatch. exit ( id) )
738
738
}
739
- drop ( & mut self . inner )
739
+ let _ = self . inner ;
740
740
}
741
741
}
742
742
You can’t perform that action at this time.
0 commit comments