bfrunner 0.1.0

A Brainfuck interpreter in Rust, for shits and giggles. Not for production.
Documentation
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

[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"