5 stable releases
Uses new Rust 2024
| 1.0.4+2.57 | Sep 22, 2025 |
|---|---|
| 1.0.1 | Sep 21, 2025 |
#366 in Build Utils
68 downloads per month
4MB
98K
SLoC
Contains (ar library, 125KB) UASM/regress/src/win64/MSVCRT.LIB, (ELF exe/lib, 1KB) UASM/regress/exp/Linux64/Lin64_1.o, (ELF exe/lib, 2KB) UASM/regress/exp/Linux64/Lin64_2.o, (ELF exe/lib, 3KB) UASM/regress/exp/Linux64/Lin64_3.o, (ELF exe/lib, 4KB) UASM/regress/exp/Linux64/Lin64_4.o, (Mach-o exe, 1KB) UASM/regress/exp/macho64/osx1.o and 2 more.
uasm-rs
A library to build the UASM compiler, for usage in build scripts.
Usage
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(())
}
(: