lua-protobuf
lua-protobuf copied to clipboard
Lua support for Google's protocol buffers
These items include uncompatible changes so you might like to create a new branch for them. ## 1. The undocumented API luaL_findtable It is no longer available in Lua 5.3...
This PR expands lua-protobuf to support: - Nested messages and enums - Fields with capital letters (the C++ protobuf library downcases them)
Hi Gregory, Thanks for the great library first! I have recently used lua-protobuf in one of our projects, and lua-protobuf auto-generated source files fail to compile as it probably tries...
I follow steps: git clone https://github.com/indygreg/lua-protobuf then cd lua-protobuf python setup.py install and everything seems ok, but when I run protoc --lua-out=. *.proto it says: can't find protoc-gen-lua, what I...
Currently, the generated files don't include other generated files when a .proto file imports another file. This causes compilation errors due to missing symbols. The file generation should be changed...