forked from hstreamdb/hstreamdb_erl
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrebar.config
35 lines (28 loc) · 857 Bytes
/
rebar.config
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
{erl_opts, [debug_info]}.
{deps, [
{ecpool, {git, "https://github.com/emqx/ecpool.git", {tag, "0.5.2"}}},
{grpc, {git, "https://github.com/emqx/grpc-erl", {tag, "0.6.6"}}},
{ezstd, {git, "https://github.com/emqx/ezstd.git", {tag, "v1.0.4-emqx1"}}}
]}.
{plugins,
[{grpc_plugin, {git, "https://github.com/HJianBo/grpc_plugin", {tag, "v0.10.1"}}}
]}.
{grpc,
[ {type, all}
, {protos, ["protocol/"]}
, {out_dir, "src/"}
, {gpb_opts, [{type_specs, false}, {module_name, "hstreamdb_api"}]}
]}.
{shell, [
{apps, [hstreamdb_erl]}
]}.
{provider_hooks,
[{pre, [{compile, {grpc, gen}},
{clean, {grpc, clean}}]}
]}.
{cover_enabled, true}.
%% automatically generated
{cover_excl_mods, [hstreamdb_api,
hstream_server_h_stream_api_bhvr,
hstream_server_h_stream_api_client
]}.