9 lines
159 B
Rust
9 lines
159 B
Rust
#![no_std]
|
|
#[cfg(feature = "alloc")]
|
|
extern crate alloc;
|
|
#[cfg(any(feature = "std", test))]
|
|
extern crate std;
|
|
|
|
pub use satrs_mib_codegen::*;
|
|
pub mod res_code;
|