[package]
edition = "2024"
name = "bfrunner"
version = "0.1.0"
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-file = "LICENSE"
repository = "https://github.com/NekoTheCatgirl/bfrunner"
[features]
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.thiserror]
version = "2.0.18"
[profile.release]
opt-level = "z"
lto = true
codegen-units = 1
panic = "abort"
strip = "symbols"