-
Notifications
You must be signed in to change notification settings - Fork 0
/
rebar.config
46 lines (39 loc) · 1.03 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
{erl_opts, [debug_info]}.
{deps, []}.
{profiles, [
{test, [
{erl_opts, [nowarn_export_all]},
%% create junit xml for circleci
{ct_opts, [{ct_hooks, [cth_surefire]}]},
{cover_enabled, true},
{cover_opts, [verbose]}
]}
]}.
{plugins, [rebar3_cargo]}.
{project_plugins, [erlfmt, {rebar3_ex_doc, "0.2.18"}]}.
% Let erlfmt write files on format as opposed to not doing anything
{erlfmt, [write]}.
{ex_doc, [
{extras, [
{"README.md", #{title => "Overview"}},
{"LICENSE", #{title => "License"}},
{"guides/quick-run-through.livemd", #{title => "Quick Run-Through Guide"}}
]},
{main, "README.md"},
{homepage_url, "https://github.com/Benjamin-Philip/serde_arrow"},
{source_url, "https://github.com/Benjamin-Philip/serde_arrow"}
]}.
{hex, [
{doc, #{provider => ex_doc}}
]}.
{cargo_opts, [
{src_dir, "native/arrow_format_nif"}
]}.
{provider_hooks, [
{pre, [
{compile, {cargo, build}}
]},
{post, [
{clean, {cargo, clean}}
]}
]}.