45 releases

new 0.4.6 May 13, 2024
0.4.2 Apr 28, 2024
0.3.23 Mar 31, 2024
0.2.1 Dec 3, 2023
0.2.0 Oct 17, 2023

#197 in Memory management

Download history 182/week @ 2024-01-22 152/week @ 2024-02-05 175/week @ 2024-02-12 272/week @ 2024-02-19 623/week @ 2024-02-26 1623/week @ 2024-03-04 722/week @ 2024-03-11 1083/week @ 2024-03-18 659/week @ 2024-03-25 973/week @ 2024-04-01 922/week @ 2024-04-08 1016/week @ 2024-04-15 842/week @ 2024-04-22 388/week @ 2024-04-29 382/week @ 2024-05-06

2,844 downloads per month
Used in 16 crates (11 directly)

Custom license

87KB
2.5K SLoC

Stak

GitHub Action Crate Codecov License

No-std and no-alloc Scheme implementation in Rust

The documentation is here.

License

MIT


lib.rs:

A virtual machine and its runtime values.

Examples

use stak_device::FixedBufferDevice;
use stak_macro::compile_r7rs;
use stak_primitive::SmallPrimitiveSet;
use stak_vm::Vm;

const HEAP_SIZE: usize = 1 << 16;
const BUFFER_SIZE: usize = 1 << 10;

let mut heap = [Default::default(); HEAP_SIZE];
let device = FixedBufferDevice::<BUFFER_SIZE, 0>::new(&[]);
let mut vm = Vm::new(&mut heap, SmallPrimitiveSet::new(device)).unwrap();

const PROGRAM: &[u8] = compile_r7rs!(r#"
    (import (scheme write))

    (display "Hello, world!")
"#);

vm.initialize(PROGRAM.iter().copied()).unwrap();
vm.run().unwrap();

assert_eq!(vm.primitive_set().device().output(), b"Hello, world!");

Dependencies