rd_hashd_intf/
lib.rs

1// Copyright (c) Facebook, Inc. and its affiliates.
2pub mod args;
3pub mod params;
4pub mod report;
5
6pub use args::Args;
7pub use params::Params;
8pub use report::{Latencies, Phase, Report, Stat};
9
10use rd_util::*;
11
12lazy_static::lazy_static! {
13    pub static ref VERSION: &'static str = env!("CARGO_PKG_VERSION");
14    pub static ref FULL_VERSION: String = full_version(*VERSION);
15}