Add impl of SIMD'd f32s
[rust-lightning] / lightning / src / util / mod.rs
1 // This file is Copyright its original authors, visible in version control
2 // history.
3 //
4 // This file is licensed under the Apache License, Version 2.0 <LICENSE-APACHE
5 // or http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
6 // <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your option.
7 // You may not use this file except in accordance with one or both of these
8 // licenses.
9
10 //! Some utility modules live here. See individual sub-modules for more info.
11
12 #[macro_use]
13 pub(crate) mod fuzz_wrappers;
14
15 #[macro_use]
16 pub mod ser_macros;
17
18 pub mod errors;
19 pub mod ser;
20 pub mod message_signing;
21 pub mod invoice;
22 pub mod persist;
23 pub mod string;
24 pub mod wakers;
25 #[cfg(fuzzing)]
26 pub mod base32;
27 #[cfg(not(fuzzing))]
28 pub(crate) mod base32;
29
30 pub(crate) mod atomic_counter;
31 pub(crate) mod byte_utils;
32 pub(crate) mod chacha20;
33 #[cfg(not(fuzzing))]
34 pub(crate) mod poly1305;
35 pub(crate) mod chacha20poly1305rfc;
36 pub(crate) mod transaction_utils;
37 pub(crate) mod scid_utils;
38 pub(crate) mod time;
39 pub(crate) mod simd_f32;
40
41 pub mod indexed_map;
42
43 /// Logging macro utilities.
44 #[macro_use]
45 pub(crate) mod macro_logger;
46
47 /// Cryptography utilities.
48 pub(crate) mod crypto;
49
50 // These have to come after macro_logger to build
51 pub mod logger;
52 pub mod config;
53
54 #[cfg(any(test, feature = "_test_utils"))]
55 pub mod test_utils;
56
57 /// impls of traits that add exra enforcement on the way they're called. Useful for detecting state
58 /// machine errors and used in fuzz targets and tests.
59 #[cfg(any(test, feature = "_test_utils"))]
60 pub mod test_channel_signer;
61