mirror of
https://github.com/valitydev/woody_erlang.git
synced 2024-11-06 02:15:19 +00:00
862358ee62
* MSPF-394/Migrate woody_erlang to cowboy 2.5.0 (#82) * Renewed some old cowboy syntax * Reworked types to fit new cowboy/ranch versions * Replaced cowboy tuples with separate values * Fixed types, deleted testing logs, deleted redundant errors * Moved to new StackTrace retrieval syntax for Erlang/OTP 21 * Restored default config, fixed typing * Cleaned unnessesary changes, removed export_all * Restored genlib cached version * Downgraded to old stacktrace retrieval syntax, fixed codestyle * Restored new StackTrace retrieval syntax, updated build image * Changed rebar3 version for CI * Corrected typing and spelling, removed unnessesary supervisor * Created stream handler to replace hooks * Added options for reading body * Simplified stream handler * Fixed wrong module name, added read body options support in stream handler * Puted read body opts to env, renamed stream handler * Codestyle, types and config fixes * Moved response tracing to a separate function, now tracing failed requests too * Changed options to map (#83) * Fixed wrong timeout override logic (#84) * Patch merge conflict * Bump dependencies (#87) * bumped hackney * bumped erlang thrift commit
59 lines
1.4 KiB
Erlang
59 lines
1.4 KiB
Erlang
% Common project erlang options.
|
|
{erl_opts, [
|
|
debug_info,
|
|
warnings_as_errors
|
|
]}.
|
|
|
|
% Common project dependencies.
|
|
{deps, [
|
|
{cowboy, "2.5.0"},
|
|
{hackney, "1.15.0"},
|
|
{rfc3339, "0.2.2"},
|
|
{gproc , "0.8.0"},
|
|
{cache , "2.2.0"},
|
|
{thrift, {git, "https://github.com/rbkmoney/thrift_erlang.git", {branch, "master"}}},
|
|
{snowflake, {git, "https://github.com/rbkmoney/snowflake.git", {branch, "master"}}},
|
|
{genlib, {git, "https://github.com/rbkmoney/genlib.git", {branch, "master"}}}
|
|
]}.
|
|
|
|
{xref_checks, [
|
|
undefined_function_calls,
|
|
undefined_functions,
|
|
locals_not_used,
|
|
deprecated_functions_calls,
|
|
deprecated_functions
|
|
]}.
|
|
|
|
{dialyzer, [
|
|
{warnings, [
|
|
unmatched_returns,
|
|
error_handling,
|
|
race_conditions,
|
|
unknown
|
|
]},
|
|
{plt_apps, all_deps}
|
|
]}.
|
|
|
|
{profiles, [
|
|
{test, [
|
|
{provider_hooks, [
|
|
{pre, [
|
|
{compile, {thrift, compile}},
|
|
{clean, {thrift, clean}}
|
|
]}
|
|
]},
|
|
{thrift_compiler_opts, [
|
|
{in_dir, "test"},
|
|
{in_files, ["test.thrift"]},
|
|
{out_erl_dir, "test"},
|
|
{out_hrl_dir, "test"},
|
|
{gen, "erlang:app_prefix=woody"}
|
|
]},
|
|
{deps, [{proper, "1.2.0"}]}
|
|
]}
|
|
]}.
|
|
|
|
{plugins, [
|
|
{rebar3_thrift_compiler, {git, "https://github.com/rbkmoney/rebar3_thrift_compiler.git", {tag, "0.1"}}}
|
|
]}.
|