├── .gitignore ├── .gitmodules ├── LICENSE ├── NOTICE ├── README.md ├── lua_protobuf ├── __init__.py └── generator.py ├── protoc-gen-lua └── setup.py /.gitignore: -------------------------------------------------------------------------------- 1 | lua_protobuf/*.pyc 2 | 3 | -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indygreg/lua-protobuf/HEAD/.gitmodules -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indygreg/lua-protobuf/HEAD/LICENSE -------------------------------------------------------------------------------- /NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indygreg/lua-protobuf/HEAD/NOTICE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indygreg/lua-protobuf/HEAD/README.md -------------------------------------------------------------------------------- /lua_protobuf/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lua_protobuf/generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indygreg/lua-protobuf/HEAD/lua_protobuf/generator.py -------------------------------------------------------------------------------- /protoc-gen-lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indygreg/lua-protobuf/HEAD/protoc-gen-lua -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indygreg/lua-protobuf/HEAD/setup.py --------------------------------------------------------------------------------