Popularity
2.4
Stable
Activity
0.0
Stable
10
3
3
Monthly Downloads: 3
Programming language: Erlang
License: BSD 3-clause "New" or "Revised" License
Tags:
Build Tools
Latest version: v0.2.0
rebar3_protobuffs alternatives and similar packages
Based on the "Build Tools" category.
Alternatively, view rebar3_protobuffs alternatives based on common mentions on social networks and blogs.
-
ExMake
DISCONTINUED. A modern, scriptable, dependency-based build tool loosely based on Make principles.
SaaSHub - Software Alternatives and Reviews
SaaSHub helps you find the best software and product alternatives
Promo
www.saashub.com
Do you think we are missing an alternative of rebar3_protobuffs or a related project?
README
rebar3 protobuffs provider
Provider to compile protobuffers files using protobuffers.
Place your .proto
files in src
directory and they will be automatically
build.
Usage
Add the plugin to your rebar config:
{plugins, [rebar3_protobuffs]}.
The compile function is under the protobuffs namespace. To automatically compile .proto
files before
the Erlang compiler add the pre_hook to rebar.config:
{provider_hooks, [
{pre, [{compile, {protobuffs, compile}}]}
]}.