mintrt 0.1.0

Security-featured runtime for lua.
[package]
name = "mintrt"
version = "0.1.0"
edition = "2024"
license-file = "LICENSE_OPEN"
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"]


[dependencies]
mlua = { version = "0.11.6", features = ["lua55", "vendored"] }
ron = "0.12.0"
serde = { version = "1.0.228", features = ["derive"] }
#thunder = "0.3.1"
log = "0.4.29"
env_logger = "0.11"
chrono = "0.4"

[profile.release]
# 优化级别:3(性能优先)、"z"(体积优先)、"s"(平衡)
opt-level = 3

# 链接时优化:false(关闭)、"thin"(推荐)、true(全量)
lto = true

# 代码生成单元:1(单单元)、16(默认)
codegen-units = 1

# Panic处理策略:"unwind"(默认)、"abort"(性能优化)
panic = "abort"

# 符号信息剥离:true(移除调试符号)
strip = true

[package.metadata.docs.rs]
all-features = true
targets = ["x86_64-unknown-linux-gnu", "x86_64-pc-windows-msvc", "x86_64-apple-darwin"]