- BID-FFI基盤実装完了(プラグインシステム動作確認) - Phase 8.6 VM性能改善完了(50.94倍高速化達成) - Phase 9.78 LLVM PoC基盤完成 - Phase 9.8 BIDレジストリ準備(nyash.toml活用戦略) - ビルドエラー修正、警告は後で対応 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
9 lines
150 B
Rust
9 lines
150 B
Rust
/*!
|
|
* Code Generation Module - Generate code from BID definitions
|
|
*/
|
|
|
|
pub mod generator;
|
|
pub mod targets;
|
|
|
|
pub use generator::*;
|
|
pub use targets::*; |