Popularity
2.6
Growing
Activity
0.0
Stable
10
3
3
Monthly Downloads: 6
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 -
rebar3_diameter_compiler
Compile Diameter .dia files on Erlang Rebar3 projects -
ExMake
A modern, scriptable, dependency-based build tool loosely based on Make principles. -
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. -
dismake
a "compiler" (as in `Mix.compilers`) for Elixir that just runs make -
rebar3_idl_compiler
This is a plugin for compiling Erlang IDL files using Rebar3.
Tired of breaking your main and manually rebasing outdated pull requests?
Managing outdated pull requests is time-consuming. Mergify's Merge Queue automates your pull request management & merging. It's fully integrated to GitHub & coordinated with any CI. Start focusing on code. Try Mergify for free.
Promo
blog.mergify.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}}]}
]}.