1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
//! # Wrc
//!
//! A thread-safe weight reference counting smart-pointer for Rust.

mod inner;
mod weight;
mod wrc;

pub use crate::wrc::Wrc;

#[cfg(test)]
mod test;