rsre-lua 0.2.5

a regex lua module using the fancy-regex rust crate
Documentation
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

cargo-features = [
    "profile-rustflags",
    "panic-immediate-abort",
]

[package]
edition = "2024"
name = "rsre-lua"
version = "0.2.5"
build = "build.rs"
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "a regex lua module using the fancy-regex rust crate"
readme = "README.md"
license = "MIT"
repository = "https://github.com/benniekiss/rs-mod-lua"

[features]
default = [
    "lua54",
    "vendored",
]
lua51 = ["mlua/lua51"]
lua52 = ["mlua/lua52"]
lua53 = ["mlua/lua53"]
lua54 = ["mlua/lua54"]
lua55 = ["mlua/lua55"]
module = ["mlua/module"]
vendored = ["mlua/vendored"]

[lib]
name = "rsre_lua"
crate-type = ["cdylib"]
path = "src/lib.rs"

[dependencies.fancy-regex]
version = "0.18.0"

[dependencies.mlua]
version = "0.11.6"

[profile.release]
opt-level = "z"
lto = true
codegen-units = 1
panic = "immediate-abort"
strip = true
rustflags = [
    "-Zlocation-detail=none",
    "-Zfmt-debug=none",
]