blockly-rust-compiler 0.1.1

Rust compiler integration library for visual programming with Blockly - validate and check generated code
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// Blockly Rust Compiler Library
// Provides Rust compilation checking for the Blockly visual editor

pub mod blockly_bridge;
pub mod rust_compiler;

#[cfg(feature = "web-service")]
pub mod compiler_service;

// Re-export main types
pub use rust_compiler::{
    CompilationError, CompilationResult, ErrorLevel, RustCompiler,
    is_cargo_available, is_rust_available,
};

#[cfg(feature = "web-service")]
pub use compiler_service::{CheckRequest, CheckResponse, create_router, start_service};