Popularity
2.5
Declining
Activity
0.0
Stable
10
3
3

Monthly Downloads: 4
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.

Do you think we are missing an alternative of rebar3_protobuffs or a related project?

Add another 'Build Tools' Package

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}}]}
                 ]}.