harvesthealth's picture
Upload folder using huggingface_hub
f14b4e9 verified
Raw
History Blame Contribute Delete
317 Bytes
//! Parsing and workspace management for the Firm DSL.
//!
//! This crate handles loading `.firm` files, parsing them into an abstract
//! representation, and converting them to Firm's core data structures.
pub mod convert;
pub mod defaults;
pub mod diagnostics;
pub mod generate;
pub mod parser;
pub mod workspace;