fuel-crypto 0.66.4

Fuel cryptographic primitives.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// It is used in the benches
use criterion as _;
use k256 as _;

mod hasher;

#[cfg(feature = "std")]
mod mnemonic;

mod signature;

#[cfg(feature = "serde")]
mod serde;
#[cfg(not(feature = "serde"))]
use bincode as _;