| Crates.io | uasm |
| lib.rs | uasm |
| version | 1.0.4+2.57 |
| created_at | 2025-09-21 22:46:22.567651+00 |
| updated_at | 2025-09-22 23:55:48.507663+00 |
| description | A library to build the UASM compiler, for usage in build scripts. |
| homepage | |
| repository | https://github.com/Benkol003/uasm-rs |
| max_upload_size | |
| id | 1849272 |
| size | 7,278,162 |
A library to build the UASM compiler, for usage in build scripts.
This crate provides one export, which is the path to the built UASM executable.
Example usage:
use std::result::Result;
use std::error::Error;
use uasm::UASM_PATH;
fn main() -> Result<(),Box<dyn Error>>{
println!("Hello, world!");
std::process::Command::new(UASM_PATH).arg("-h").spawn()?;
Ok(())
}
(: