metricrs 0.1.1

A lightweight metrics facade for `Rust`.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
//! A lightweight metrics facade for `Rust`.

#![cfg_attr(docsrs, feature(doc_cfg))]

mod registry;
pub use registry::*;

#[cfg(feature = "global")]
#[cfg_attr(docsrs, doc(cfg(feature = "global")))]
pub mod global;

#[cfg(feature = "derive")]
#[cfg_attr(docsrs, doc(cfg(feature = "derive")))]
mod derive;

#[cfg(feature = "derive")]
pub use derive::*;