biasedrc 0.1.0

An implementation of biased-reference counting
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! Integration with third-party crates.
//!
//! All public items from this module should be re-exported at the crate root.
//! This module itself should be private.

#[cfg(feature = "arc-swap")]
mod arc_swap;
#[cfg(feature = "archery")]
mod archery;
#[cfg(feature = "serde")]
mod serde;

#[cfg(feature = "archery")]
pub use archery::BrcK;