github.com/cosmos/cosmos-proto@v1.0.0-beta.3/README.md (about) 1 # Pulsar 2 3 ## Installing 4 5 go install github.com/cosmos/cosmos-proto/cmd/protoc-gen-go-pulsar 6 7 ## Running 8 9 cd path/to/proto/files 10 11 protoc --go-pulsar_out=. --go-pulsar_opt=paths=source_relative --go-pulsar_opt=features=protoc+fast -I . 12 NAME_OF_FILE.proto 13 14 ## Acknowledgements 15 16 Code for the generator structure/features and the functions marshal, unmarshal, and size implemented by [planetscale/vtprotobuf](https://github.com/planetscale/vtprotobuf) was used in our `ProtoMethods` implementation. 17 18 Code used to produce default code stubs found in [protobuf](https://pkg.go.dev/google.golang.org/protobuf) was copied into [features/protoc](./features/protoc).