2022-10-07 18:17:21 +00:00
|
|
|
[package]
|
|
|
|
name = "bf-interpreter"
|
|
|
|
version = "0.1.0"
|
|
|
|
edition = "2021"
|
2022-10-08 06:12:47 +00:00
|
|
|
authors = ["Anas Elgarhy <anas.elgarhy.dev@gmail.com>"]
|
2022-10-08 06:33:10 +00:00
|
|
|
license = "MIT"
|
2022-10-08 06:12:47 +00:00
|
|
|
description = "Brainfu*k interpreter and REPL written in Rust"
|
|
|
|
repository = "https://github.com/anas-elgarhy/bf-interpreter"
|
|
|
|
readme = "README.md"
|
2022-10-08 07:35:40 +00:00
|
|
|
keywords = [
|
|
|
|
"brainfuck",
|
|
|
|
"interpreter",
|
|
|
|
"repl",
|
|
|
|
"bf",
|
|
|
|
"bf-interpreter",
|
|
|
|
"bf-repl",
|
|
|
|
"brainfuck-interpreter",
|
|
|
|
"brainfuck-repl",
|
|
|
|
]
|
2022-10-08 06:12:47 +00:00
|
|
|
categories = ["command-line-utilities"]
|
|
|
|
documentation = "https://docs.rs/bf-interpreter"
|
|
|
|
homepage = "https://github.com/anas-elgarhy/bf-interpreter"
|
|
|
|
include = [
|
|
|
|
"src/**/*",
|
|
|
|
"Cargo.toml",
|
|
|
|
"README.md"
|
|
|
|
]
|
|
|
|
|
|
|
|
exclude = [
|
|
|
|
"test_code/**/*",
|
|
|
|
"screenshots/**/*"
|
|
|
|
]
|
2022-10-07 18:17:21 +00:00
|
|
|
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
|
|
|
|
[dependencies]
|
2022-10-07 21:40:56 +00:00
|
|
|
clap = { version = "4.0.10", features = ["derive", "color", "cargo"] }
|
2022-10-07 18:17:21 +00:00
|
|
|
log = "0.4.17"
|
|
|
|
pretty_env_logger = "0.4.0"
|
2022-10-10 20:55:50 +00:00
|
|
|
colored = "2.0.0"
|
2022-10-12 16:31:07 +00:00
|
|
|
no-panic = "0.1.16"
|
2022-10-08 20:11:13 +00:00
|
|
|
|
|
|
|
[dev-dependencies]
|
|
|
|
pretty_assertions = "1.3.0"
|