[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.2" authors = ["Stephen "] 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