HomeServer/3rd/lua-protobuf/rockspecs/lua-protobuf-0.3.4-1.rockspec
2024-11-20 15:41:37 +08:00

25 lines
520 B
Lua

package = "lua-protobuf"
version = "0.3.4-1"
source = {
url = "git+https://github.com/starwing/lua-protobuf.git",
tag = "0.3.4"
}
description = {
summary = "protobuf data support for Lua",
detailed = [[
This project offers a simple C library for basic protobuf wire format encode/decode.
]],
homepage = "https://github.com/starwing/lua-protobuf",
license = "MIT"
}
dependencies = {
"lua >= 5.1"
}
build = {
type = "builtin",
modules = {
pb = "pb.c",
protoc = "protoc.lua"
}
}