[[bin]]
name = "rust-bf"
path = "src/main.rs"
[dependencies.clap]
features = ["derive"]
version = "4.5.45"
[dependencies.cross-xdg]
version = "2.0.0"
[dependencies.crossterm]
version = "0.29.0"
[dependencies.ctrlc]
version = "3.4.7"
[dependencies.nu-ansi-term]
version = "0.50.1"
[dependencies.ratatui]
version = "0.29.0"
[dependencies.reedline]
version = "0.41.0"
[dependencies.thiserror]
version = "2.0.16"
[dev-dependencies.assert_cmd]
version = "2"
[dev-dependencies.predicates]
version = "3"
[dev-dependencies.tempfile]
version = "3"
[[example]]
name = "debug"
path = "examples/debug.rs"
[[example]]
name = "reader"
path = "examples/reader.rs"
[[example]]
name = "writer"
path = "examples/writer.rs"
[lib]
name = "rust_bf"
path = "src/lib.rs"
[package]
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = false
categories = ["command-line-utilities", "development-tools", "compilers"]
description = "A Brainfuck interpreter, generator, REPL, and IDE written in Rust"
edition = "2024"
exclude = ["/docs/*", ".idea/*", ".DS_Store", "*.bf", "Cargo.lock"]
keywords = ["brainfuck", "interpreter", "REPL", "IDE"]
license = "Apache-2.0"
name = "rust-bf"
readme = "README.md"
repository = "https://github.com/kennethlove/rust-bf"
version = "0.4.0"
[[test]]
name = "debug_flag"
path = "tests/debug_flag.rs"
[[test]]
name = "empty_submission"
path = "tests/empty_submission.rs"
[[test]]
name = "errors"
path = "tests/errors.rs"
[[test]]
name = "history_state"
path = "tests/history_state.rs"
[[test]]
name = "meta_commands"
path = "tests/meta_commands.rs"
[[test]]
name = "mode"
path = "tests/mode.rs"
[[test]]
name = "mode_policy"
path = "tests/mode_policy.rs"
[[test]]
name = "non_blocking"
path = "tests/non_blocking.rs"
[[test]]
name = "read_cmd"
path = "tests/read_cmd.rs"
[[test]]
name = "repl"
path = "tests/repl.rs"
[[test]]
name = "signal"
path = "tests/signal.rs"
[[test]]
name = "stdin_read"
path = "tests/stdin_read.rs"
[[test]]
name = "streams"
path = "tests/streams.rs"
[[test]]
name = "streams_and_flushing"
path = "tests/streams_and_flushing.rs"
[[test]]
name = "valid_invalid_program"
path = "tests/valid_invalid_program.rs"
[[test]]
name = "write_debug"
path = "tests/write_debug.rs"
[[test]]
name = "write_roundtrip"
path = "tests/write_roundtrip.rs"