retriever 0.0.3

Retriever is an embedded in-memory data store for rust applications.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
#[cfg(not(feature = "fnv"))]
use std::collections::hash_map::DefaultHasher;
#[cfg(not(feature = "fnv"))]
use std::hash::BuildHasherDefault;

#[cfg(feature = "fnv")]
use fnv::FnvBuildHasher;

#[cfg(feature = "fnv")]
pub type HasherImpl = FnvBuildHasher;

#[cfg(not(feature = "fnv"))]
pub type HasherImpl = BuildHasherDefault<DefaultHasher>;