hickory_server/store/mod.rs
1// Copyright 2015-2018 Benjamin Fry <benjaminfry -@- me.com>
2//
3// Licensed under the Apache License, Version 2.0, <LICENSE-APACHE or
4// https://apache.org/licenses/LICENSE-2.0> or the MIT license <LICENSE-MIT or
5// https://opensource.org/licenses/MIT>, at your option. This file may not be
6// copied, modified, or distributed except according to those terms.
7
8//! All persistent store implementations
9
10pub mod blocklist;
11pub mod file;
12pub mod forwarder;
13pub mod in_memory;
14#[cfg(feature = "metrics")]
15mod metrics;
16pub mod recursor;
17#[cfg(feature = "sqlite")]
18pub mod sqlite;