Alex Bakon
Alex Bakon
Bazel's story for C# isn't as great as it is for Java, but I don't have any experience with that so it might turn out to be a non-issue.
Why not use the existing regular expression support?
I'm not opposed to including rules for well-known formats, my concern is about cross-language support. The Go standard library is a lot more comprehensive than the C++ standard library, which...
@moderation and I chatted offline and it looks like the current blocker is a bug in rules_go repository's support for arm64 go toolchain versions. The issue is that if [repository_ctx](https://docs.bazel.build/versions/master/skylark/lib/repository_ctx.html).os.name...
You'll need to generate `validate.pb.h` and .cc by running protoc against `validate/validate.proto`. The C++ usages I'm aware of use Bazel, but the build rules for it basically do what you're...
#439 added an Bazel workspace as a subdirectory with examples and tests.
Maybe I'm misunderstanding the issue, but why can't you import `go_proto_compiler` from the same `@io_bazel_rules_go` repository? It doesn't seem like it makes sense for PGV to re-export it unmodified.
Got it, specifying compiler rules is a different approach than I'm familiar with; I'd recommend adding a `pgv_go_proto_library` rule to your BUILD file that would generate the .pb.validate.go, but I...
@gnossen Thanks, I don't use Bazel much in OSS land so I wasn't aware of this particular wart. Happy to review a PR to fix this.
@gnossen Does #258 address this sufficiently?