[package]
edition = "2024"
name = "kevy-lua"
version = "1.27.0"
authors = ["GOLIA K.K."]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Lua scripting bridge for kevy — wraps the luna-core interpreter into the Redis EVAL/EVALSHA/SCRIPT command surface with default Lua 5.1 + per-script `#!lua version=N` dialect opt-in (5.1-5.5)."
homepage = "https://github.com/goliajp/kevy"
documentation = "https://docs.rs/kevy-lua"
readme = "README.md"
keywords = [
"redis",
"lua",
"kevy",
"script",
"embedded",
]
categories = [
"database-implementations",
"embedded",
]
license = "Apache-2.0 OR MIT"
repository = "https://github.com/goliajp/kevy"
[lib]
name = "kevy_lua"
path = "src/lib.rs"
[[test]]
name = "integration"
path = "tests/integration.rs"
[dependencies.kevy-bytes]
version = "1.19.0"
[dependencies.kevy-resp]
version = "1.19.0"
[dependencies.luna-core]
version = "=1.1.0"
[dev-dependencies.luna-core]
version = "=1.1.0"
[lints.clippy.all]
level = "deny"
priority = 0
[lints.rust]
warnings = "deny"