https://github.com/compeydev/bf-rs
🤯🦀 Yet another brainfuck interpreter written in Rust.
https://github.com/compeydev/bf-rs
Last synced: about 1 year ago
JSON representation
🤯🦀 Yet another brainfuck interpreter written in Rust.
- Host: GitHub
- URL: https://github.com/compeydev/bf-rs
- Owner: CompeyDev
- License: gpl-3.0
- Created: 2023-05-01T06:36:39.000Z (about 3 years ago)
- Default Branch: main
- Last Pushed: 2023-05-22T12:32:05.000Z (about 3 years ago)
- Last Synced: 2025-04-12T02:13:06.902Z (about 1 year ago)
- Language: Rust
- Homepage:
- Size: 193 KB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
README
Yet another brainfuck interpreter written in Rust.
# Installation
## Prebuilt binaries
Prebuilt binaries can be found at [GitHub Releases](https://github.com/CompeyDev/bf-rs/releases), simply download the one matching your architecture & platform.
## Building from source
The source code gets published to [crates.io](https://crates.io/crates/bfrs) on every major release. In order to compile from the published source, first make sure you have the required dependencies installed:
- windres (provided by [mingw-w64](https://www.mingw-w64.org/) `binutils`)
- gcc (provided by [mingw-w64](https://www.mingw-w64.org/))
Next, make use of `cargo install` to compile and install the binary.
```
cargo install bfrs
```
If all succeeded, the compiled binary should be present at `$HOME/.cargo/bin` and be called "bfrs".