liftbridge-io / liftbridge-rs

Liftbridge client for Rust language.
Apache License 2.0
1 stars 1 forks source link

Instead of a hard copy of protobuf definition introduce a make target. #5

Open ruseinov opened 4 years ago

ruseinov commented 4 years ago

One that clones latest protobuf definitions from the original repo with the protocol.

The downside of this is that the protobuf definition will no longer be part of the repo, so the project won't build without successfully executing the aforementioned make target first.

@tylertreat what do you think?

Something along these lines was my plan:

rm -rf liftbridge-api
git clone --depth 1 git@github.com:liftbridge-io/liftbridge-api.git

plus a .gitignore for the liftbridge-api folder.

tylertreat commented 4 years ago

Makes sense to me.