https://github.com/feenkcom/gtoolkit-boxer
A set of utilities to work with Rust through FFI
https://github.com/feenkcom/gtoolkit-boxer
Last synced: 11 months ago
JSON representation
A set of utilities to work with Rust through FFI
- Host: GitHub
- URL: https://github.com/feenkcom/gtoolkit-boxer
- Owner: feenkcom
- License: mit
- Created: 2019-09-01T12:28:53.000Z (almost 7 years ago)
- Default Branch: main
- Last Pushed: 2025-05-05T21:20:52.000Z (about 1 year ago)
- Last Synced: 2025-06-26T18:45:17.342Z (12 months ago)
- Language: Smalltalk
- Homepage:
- Size: 348 KB
- Stars: 5
- Watchers: 2
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# 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 ].
```