bfrunner 0.1.2

A Brainfuck interpreter in Rust, for shits and giggles. Not for production.
Documentation
[dependencies.bfrunner_macro]
optional = true
version = "0.1.*"

[dependencies.thiserror]
version = "2.0.18"

[[example]]
name = "echo"
path = "examples/echo.rs"

[[example]]
name = "hello_world"
path = "examples/hello_world.rs"

[features]
compile_time_macro = ["bfrunner_macro"]
ffi = []

[lib]
crate-type = ["lib", "cdylib"]
name = "bfrunner"
path = "src/lib.rs"

[package]
authors = ["NekoTheCatgirl <thea@nekothecatgirl.com>"]
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = false
description = "A Brainfuck interpreter in Rust, for shits and giggles. Not for production."
edition = "2024"
keywords = ["brainfuck", "interpreter", "fun", "esoteric", "learning"]
license = "CC0-1.0"
name = "bfrunner"
publish = true
readme = "Readme.md"
repository = "https://github.com/NekoTheCatgirl/bfrunner"
version = "0.1.2"

[[test]]
name = "tests"
path = "tests/tests.rs"