Popularity
2.4
Declining
Activity
0.0
Stable
10
2
3
Monthly Downloads: 2
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.
-
Rebar3
Erlang build tool that makes it easy to compile and test Erlang applications and releases. -
reaxt
Use React template into your Elixir application for server rendering -
rebar3_auto
Rebar3 plugin to auto compile and reload on file change. -
rebar3_eqc
A rebar3 plugin to enable the execution of Erlang QuickCheck properties -
reltool_util
Erlang reltool utility functionality application -
ExMake
A modern, scriptable, dependency-based build tool loosely based on Make principles. -
rebar3_diameter_compiler
Compile Diameter .dia files on Erlang Rebar3 projects -
rebar3_exunit
A plugin to run Elixir ExUnit tests from rebar3 build tool -
rebar3_neotoma_plugin
Rebar3 neotoma (Parser Expression Grammar) compiler -
rebar3_asn1_compiler
Plugin for compiling ASN.1 modules with Rebar3. -
rebar3_idl_compiler
This is a plugin for compiling Erlang IDL files using Rebar3. -
dismake
a "compiler" (as in `Mix.compilers`) for Elixir that just runs make
Learn Elixir in as little as 12 Weeks
A structured learning environment with practical assignments, code reviews, weekly live coaching sessions, job-hunting assistance, and more. Try a Free Preview today!
Promo
learn-elixir.dev
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}}]}
]}.