use Hasher;
/// FNV-1a 64-bit hasher implementation
/// This is a dependency-free implementation of the FNV-1a hash algorithm
const FNV_PRIME: u64 = 1099511628211;
const FNV_OFFSET_BASIS: u64 = 14695981039346656037;
pub type FormulaHasher = FnvHasher;