Skip to main content

asimov_installer/
lib.rs

1// This is free and unencumbered software released into the public domain.
2
3#![no_std]
4#![forbid(unsafe_code)]
5
6extern crate alloc;
7
8#[cfg(feature = "std")]
9extern crate std;
10
11pub use asimov_module::{InstalledModuleManifest, ModuleManifest};
12pub use dogma::prelude;
13
14#[cfg(feature = "std")]
15pub mod installer;
16#[cfg(feature = "std")]
17pub use installer::*;