File tree Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Original file line number Diff line number Diff line change 127
127
128
128
use ark_ec:: { AffineRepr , CurveGroup } ;
129
129
use ark_ff:: { One , PrimeField , Zero } ;
130
- use ark_serialize:: { CanonicalDeserialize , CanonicalSerialize } ;
131
130
use ark_std:: vec:: Vec ;
132
131
133
132
use digest:: Digest ;
@@ -145,7 +144,8 @@ pub mod ring;
145
144
#[ cfg( test) ]
146
145
mod testing;
147
146
148
- use codec:: Codec ;
147
+ // Some essential re-exports
148
+ pub use ark_serialize:: { CanonicalDeserialize , CanonicalSerialize } ;
149
149
150
150
/// Re-export stuff that may be useful downstream.
151
151
pub mod reexports {
@@ -155,6 +155,8 @@ pub mod reexports {
155
155
pub use ark_std;
156
156
}
157
157
158
+ use codec:: Codec ;
159
+
158
160
pub type AffinePoint < S > = <S as Suite >:: Affine ;
159
161
pub type BaseField < S > = <AffinePoint < S > as AffineRepr >:: BaseField ;
160
162
pub type ScalarField < S > = <AffinePoint < S > as AffineRepr >:: ScalarField ;
You can’t perform that action at this time.
0 commit comments