gtoolkit-boxer

Description

A set of utilities to work with Rust through FFI

Details

Source
GitHub
License
MIT
Stars
5
Forks
2
Created
Sept. 1, 2019
Updated
March 18, 2026

Categories

System / OS

README excerpt

# GToolkit-Boxer
A set of utilities to work with Rust through ffi

## Building the shared library

```bash
cargo build --package libboxer --release
```

## Installation

Place the shared library (`target/release/libBoxer.dylib`) in the shared libraries folder of the Pharo VM or near the `.image`.
Install the bindings:

```smalltalk 
EpMonitor current disable.
[ 
  Metacello new
    baseline: 'GToolkitBoxerBindings';
    repository: 'github://feenkcom/gtoolkit-boxer:main/boxer-bindings';
    load
] ensure: [ EpMonitor current enable ].  
```
← Back to results