Skip to main content

ironfix_codegen/
lib.rs

1/******************************************************************************
2   Author: Joaquín Béjar García
3   Email: jb@taunais.com
4   Date: 27/1/26
5******************************************************************************/
6
7//! # IronFix Codegen
8//!
9//! Build-time code generation for the IronFix FIX protocol engine.
10//!
11//! This crate generates Rust source code from FIX dictionary definitions,
12//! providing type-safe field constants and message structs.
13//!
14//! ## Usage
15//!
16//! Typically used in a `build.rs` script to generate code at compile time.
17
18pub mod generator;
19
20pub use generator::{CodeGenerator, GeneratorConfig};