forked from gen-smtp/gen_smtp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
rebar.config
68 lines (63 loc) · 1.04 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
%% -*- mode: erlang; -*-
{require_min_otp_vsn, "18"}.
{erl_opts,
[fail_on_warning,
debug_info,
warn_unused_vars,
warn_unused_import,
warn_exported_vars,
{platform_define, "18", 'OTP_18'}]}.
{xref_checks,
[undefined_function_calls,
undefined_functions,
locals_not_used,
%% exports_not_used,
deprecated_function_calls,
deprecated_functions
]}.
{xref_ignores,
[
{smtp_rfc822_parse, return_error, 2}
]}.
{deps, [{ranch, "1.6.1"},
{hut, "1.3.0"}]}.
{profiles,
[
{dialyzer,
[
{deps,
[
{eiconv, "1.0.0"}
]
},
{dialyzer,
[
{plt_extra_apps,
[
eiconv,
ssl,
hut
]
},
{warnings,
[error_handling,
unknown
]}
]}
]},
{ranch13,
[{deps, [{ranch, "1.3.2"}]}]},
{ranch20,
[{deps,
[{ranch, {git, "https://github.com/ninenines/ranch", {branch, "master"}}}]
}]},
{test,
[
{cover_enabled, true},
{cover_print_enabled, true},
{deps,
[
{eiconv, "1.0.0"}
]}
]}
]}.