Skip to main content

distrib_rust/
lib.rs

1// This is free and unencumbered software released into the public domain.
2
3//! Distrib helps you distribute your software.
4
5#![no_std]
6#![allow(unused)]
7#![forbid(unsafe_code)]
8#![cfg_attr(docsrs, feature(doc_cfg))]
9
10#[cfg(feature = "alloc")]
11extern crate alloc;
12
13#[cfg(feature = "std")]
14extern crate std;
15
16mod error;
17pub use error::*;
18
19pub mod manifest;
20pub use manifest::*;
21
22#[cfg(feature = "std")]
23mod load;
24#[cfg(feature = "std")]
25pub use load::*;