[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"
[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"