forked from aeternity/mnesia_rocksdb
-
Notifications
You must be signed in to change notification settings - Fork 0
/
rebar.config
47 lines (42 loc) · 1.07 KB
/
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
36
37
38
39
40
41
42
43
44
45
46
47
%% -*- erlang -*-
{minimum_otp_vsn, "21.0"}.
{deps,
[
{sext, "1.8.0"},
{rocksdb, {git, "https://github.com/emqx/erlang-rocksdb.git", {ref,"d695c6e"}}},
{hut, "1.4.0"}
]}.
{xref_checks, [
undefined_function_calls,
locals_not_used,
deprecated_function_calls
]}.
{dialyzer, [{plt_apps, all_deps},
{base_plt_apps, [erts, kernel, stdlib, mnesia ]}
]}.
{profiles,
[
{test,
[
{deps, [ {proper, "1.4.0"}
, {meck, "0.9.2"}
, {trace_runner, {git, "https://github.com/uwiger/trace_runner.git",
{ref, "2e56677"}}}
]}
]},
{edown,
%% Use as `rebar3 as edown do edoc`
[
{deps, [{edown, "0.8.4"}]},
{edoc_opts,
[{doclet, edown_doclet},
{app_default, "http://www.erlang.org/doc/man"},
{doc_path, []},
{top_level_readme,
{"./README.md", "https://github.com/aeternity/mnesia_rocksdb"}}]}]}
]}.
{ex_doc, [
{extras, [<<"README.md">>, <<"LICENSE">>]},
{main, <<"readme">>},
{source_url, <<"https://github.com/aeternity/mnesia_rocksdb">>}
]}.