distrib-beam 0.0.2

Distrib helps you distribute your software.
// This is free and unencumbered software released into the public domain.

//! Distrib helps you distribute your software.

#![no_std]
#![allow(unused)]
#![forbid(unsafe_code)]
#![cfg_attr(docsrs, feature(doc_cfg))]

#[cfg(feature = "alloc")]
extern crate alloc;

#[cfg(feature = "std")]
extern crate std;

#[cfg(feature = "otter")]
#[doc(hidden)]
pub use otter;

#[cfg(feature = "rustler")]
#[doc(hidden)]
pub use rustler;