File tree 2 files changed +5
-5
lines changed
2 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -19,7 +19,7 @@ cfg-if = "1.0.0"
19
19
heapless = " 0.7.14"
20
20
httparse = { version = " 1.7.1" , default-features = false }
21
21
rand_core = " 0.6.3"
22
- sha1 = " 0.10.1"
22
+ sha1 = { version = " 0.10.1" , default-features = false }
23
23
24
24
[dev-dependencies ]
25
25
async-std = { version = " 1.12.0" , features = [" attributes" ] }
Original file line number Diff line number Diff line change 4
4
// As this is far from being any useful, please do extend this on your own
5
5
pub trait CompatExt {
6
6
fn compat ( self ) -> Compat < Self >
7
- where
8
- Self : Sized ;
7
+ where
8
+ Self : Sized ;
9
9
fn compat_ref ( & self ) -> Compat < & Self > ;
10
10
fn compat_mut ( & mut self ) -> Compat < & mut Self > ;
11
11
}
12
12
13
13
impl < T > CompatExt for T {
14
14
fn compat ( self ) -> Compat < Self >
15
- where
16
- Self : Sized ,
15
+ where
16
+ Self : Sized ,
17
17
{
18
18
Compat ( self )
19
19
}
You can’t perform that action at this time.
0 commit comments