[package]
name = "lua-cli"
version.workspace = true
description = "The lua-rs command-line interpreter: Lua 5.4 in safe Rust."
edition.workspace = true
rust-version.workspace = true
license.workspace = true
repository.workspace = true
homepage.workspace = true
readme = "README.md"
[lints.rust]
unsafe_code = "allow"
[[bin]]
name = "lua-rs"
path = "src/main.rs"
[features]
dhat-heap = ["dep:dhat"]
fast-alloc = ["dep:mimalloc"]
[dependencies]
lua-types.workspace = true
lua-vm.workspace = true
lua-stdlib.workspace = true
lua-parse.workspace = true
lua-rs-lfs.workspace = true
libloading = "0.9"
rustyline = "14"
dhat = { version = "0.3", optional = true }
mimalloc = { version = "0.1", optional = true }