[package]
name = "bop-cli"
description = "CLI and REPL for the Bop programming language"
version.workspace = true
edition.workspace = true
rust-version.workspace = true
license.workspace = true
repository.workspace = true
homepage.workspace = true
authors.workspace = true
readme = "README.md"
keywords = ["language", "interpreter", "scripting", "repl"]
categories = ["compilers", "command-line-utilities"]
[[bin]]
name = "bop"
path = "src/main.rs"
[dependencies]
bop = { version = "0.3.0", path = "../bop", package = "bop-lang", default-features = false, features = ["bop-std"] }
bop-sys = { version = "0.3.0", path = "../bop-sys" }
bop-vm = { version = "0.3.0", path = "../bop-vm" }
bop-compile = { version = "0.3.0", path = "../bop-compile" }
rustyline = { version = "17", features = ["with-file-history"] }