Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions hack/proto/buf.gen.control.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,13 @@ managed:
enabled: true
plugins:
- local: protoc-gen-prost
out: crates/proto/src/generated/protect/control
out: src/proto/generated/protect/control
opt:
- compile_well_known_types
- extern_path=.google.protobuf=::pbjson_types
- local: protoc-gen-prost-serde
out: crates/proto/src/generated/protect/control
out: src/proto/generated/protect/control
- local: protoc-gen-tonic
out: crates/proto/src/generated/protect/control
out: src/proto/generated/protect/control
inputs:
- module: buf.build/edera-dev/protect
3 changes: 1 addition & 2 deletions hack/proto/gen.sh
Original file line number Diff line number Diff line change
Expand Up @@ -47,8 +47,7 @@ cd "${REPO_ROOT}" >/dev/null || exit

# We need to clean the directories where the protos are generated into
# so that files that should no longer be generated are deleted.
rm -rf crates/proto/src/generated
rm -rf crates/proto-vendor/src/generated
rm -rf src/proto/generated

# One generate command per protobuf package. This allows us to create the protobuf hierarchy
# that the prost generated protobuf files assume, instead of having all the files
Expand Down
4 changes: 2 additions & 2 deletions hack/proto/versions.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
# shellcheck disable=SC2034
set -e

PROTOC_GEN_PROST_REPOSITORY="https://github.com/edera-dev/protoc-gen-prost.git"
PROTOC_GEN_PROST_COMMIT=94b56ce1d898398167a0e38b35e79658a3622972
PROTOC_GEN_PROST_REPOSITORY="https://github.com/neoeinstein/protoc-gen-prost.git"
PROTOC_GEN_PROST_COMMIT=66b503dd1631bc2eaf79db37cde74b01567c8224
BUF_COMMIT=69a3227530199878cc50df6ce889b176b498e077

BUF_VERSION=v1.56.0
Expand Down
Loading