File tree 1 file changed +8
-8
lines changed
1 file changed +8
-8
lines changed Original file line number Diff line number Diff line change @@ -15,23 +15,23 @@ pub(crate) mod fuzz_wrappers;
15
15
#[ macro_use]
16
16
pub mod ser_macros;
17
17
18
+ #[ cfg( fuzzing) ]
19
+ pub mod base32;
20
+ #[ cfg( not( fuzzing) ) ]
21
+ pub ( crate ) mod base32;
18
22
pub mod errors;
19
- pub mod ser;
20
23
pub mod message_signing;
21
24
pub mod persist;
22
25
pub mod scid_utils;
26
+ pub mod ser;
23
27
pub mod sweep;
24
28
pub mod wakers;
25
- #[ cfg( fuzzing) ]
26
- pub mod base32;
27
- #[ cfg( not( fuzzing) ) ]
28
- pub ( crate ) mod base32;
29
29
30
- pub ( crate ) mod atomic_counter;
31
30
pub ( crate ) mod async_poll;
31
+ pub ( crate ) mod atomic_counter;
32
32
pub ( crate ) mod byte_utils;
33
- pub ( crate ) mod transaction_utils;
34
33
pub mod hash_tables;
34
+ pub ( crate ) mod transaction_utils;
35
35
36
36
#[ cfg( feature = "std" ) ]
37
37
pub ( crate ) mod time;
@@ -43,8 +43,8 @@ pub mod indexed_map;
43
43
pub ( crate ) mod macro_logger;
44
44
45
45
// These have to come after macro_logger to build
46
- pub mod logger;
47
46
pub mod config;
47
+ pub mod logger;
48
48
49
49
#[ cfg( any( test, feature = "_test_utils" ) ) ]
50
50
pub mod test_utils;
You can’t perform that action at this time.
0 commit comments