fogtix/crates/fogtix-bytecode/src/lib.rs

11 lines
318 B
Rust

#![cfg_attr(not(any(test, feature = "std")), no_std)]
#![forbid(unsafe_code, unused_variables)]
/// Fogtix bytecode is structured as type-(length?)-value items, which can be nested.
extern crate alloc;
pub mod consts;
mod instr;
pub use instr::{Instr, ParseError as InstrParseError};
mod parse;
pub use parse::Parse;