Skip to content

Latest commit

 

History

History
42 lines (30 loc) · 1.81 KB

File metadata and controls

42 lines (30 loc) · 1.81 KB

RustScript

rustscript on crates.io

RustScript is a compiled scripting language and runtime built around pd-vm: a stack-based VM, compiler toolchain, standard library, bytecode/AOT tooling, WebAssembly runtime support, and debugger-facing runtime contract.

Documentation

The complete language, runtime, and implementation guides live on the RustScript documentation site:

Crate usage

Consumers can refer to the VM crates from this repository:

rustscript = "0.22.2"
pd-vm = { git = "https://github.com/rustscript-lang/rustscript", package = "pd-vm" }
pd-host-function = { git = "https://github.com/rustscript-lang/rustscript", package = "pd-host-function" }

Build and test

cargo test --workspace
cargo build --workspace --release

Related projects