[package]
name = "mintrt"
version = "0.1.2"
edition = "2024"
license-file = "LICENSE"
authors = ["S.A. (@snoware) <2026>"]
description = "Security-featured runtime for lua."
documentation = "https://docs.rs/mintrt"
repository = "https://gitee.com/snoware/mint"
keywords = ["lua", "runtime", "security"]
readme = "README.md"
homepage = "https://swe-iss.rth1.xyz/softwares/jingzhe"
categories = ["development-tools", "security"]
[lib]
name = "mintrt"
path = "src/lib.rs"
[[bin]]
name = "mintrt"
path = "src/main.rs"
[dependencies]
mlua = { version = "0.11.6", features = ["lua55", "vendored"] }
ron = "0.12.0"
serde = { version = "1.0.228", features = ["derive"] }
log = "0.4.29"
env_logger = "0.11"
chrono = "0.4"
[profile.release]
opt-level = 3
lto = true
codegen-units = 1
panic = "abort"
strip = true
[package.metadata.docs.rs]
all-features = true
targets = ["x86_64-unknown-linux-gnu", "x86_64-pc-windows-msvc", "x86_64-apple-darwin"]