[package]
edition = "2024"
name = "bfrunner"
version = "0.1.1"
authors = ["NekoTheCatgirl <thea@nekothecatgirl.com>"]
build = false
publish = true
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A Brainfuck interpreter in Rust, for shits and giggles. Not for production."
readme = "Readme.md"
keywords = [
"brainfuck",
"interpreter",
"fun",
"esoteric",
"learning",
]
license = "CC0-1.0"
repository = "https://github.com/NekoTheCatgirl/bfrunner"
[features]
compile_time_macro = ["bfrunner_macro"]
ffi = []
[lib]
name = "bfrunner"
crate-type = [
"lib",
"cdylib",
]
path = "src/lib.rs"
[[example]]
name = "echo"
path = "examples/echo.rs"
[[example]]
name = "hello_world"
path = "examples/hello_world.rs"
[[test]]
name = "tests"
path = "tests/tests.rs"
[dependencies.bfrunner_macro]
version = "0.1.*"
optional = true
[dependencies.thiserror]
version = "2.0.18"