An xBASIC interpreter library written in Rust. xBASIC is a language loosely based off of QBasic.
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
[package]
|
|
name = "xbasic"
|
|
description = "A library that allows adding a scripting language onto your project with ease. This lets your users write their own arbitrary logic."
|
|
version = "0.3.1"
|
|
authors = ["Stephen <stephen@stephendownward.ca>"]
|
|
edition = "2018"
|
|
readme = "README.md"
|
|
license = "MIT"
|
|
repository = "https://git.scd31.com/stephen/xbasic"
|
|
|
|
[lib]
|
|
name = "xbasic"
|
|
path = "src/lib.rs"
|
|
|
|
[[bin]]
|
|
name = "xbasic-bin"
|
|
path = "src/bin/main.rs"
|
|
|
|
[dependencies]
|
|
phf = { version = "0.8", features = ["macros"] }
|
|
num-traits = "0.2"
|
|
num-derive = "0.2"
|
|
|
|
[dev-dependencies]
|
|
criterion = "0.3"
|
|
|
|
[[bench]]
|
|
name = "benchmark"
|
|
harness = false
|