Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
23 commits
Select commit Hold shift + click to select a range
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,8 @@ ESCRIPT_EMU_ARGS = -noinput -setcookie ra_fifo_cli
dep_gen_batch_server = hex 0.10.0
dep_aten = hex 0.6.0
dep_seshat = hex 1.0.1
DEPS = aten gen_batch_server seshat
dep_shu = git https://github.com/rabbitmq/shu main
DEPS = aten gen_batch_server seshat shu

TEST_DEPS = proper meck inet_tcp_proxy

Expand All @@ -24,7 +25,7 @@ dep_eunit_formatters = git https://github.com/seancribbs/eunit_formatters main

DEP_PLUGINS = elvis_mk

PLT_APPS += eunit proper syntax_tools erts kernel stdlib common_test inets aten mnesia ssh ssl meck gen_batch_server inet_tcp_proxy
PLT_APPS += eunit proper syntax_tools erts kernel stdlib common_test inets aten mnesia ssh ssl meck gen_batch_server inet_tcp_proxy shu

EDOC_OUTPUT = docs
EDOC_OPTS = {pretty_printer, erl_pp}, {sort_functions, false}
Expand Down
3 changes: 2 additions & 1 deletion rebar.config
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
{deps, [
{gen_batch_server, "0.10.0"},
{aten, "0.6.0"},
{seshat, "1.0.1"}
{seshat, "1.0.1"},
{shu, {git, "https://github.com/rabbitmq/shu.git", {branch, "main"}}}
]}.

{profiles,
Expand Down
6 changes: 5 additions & 1 deletion rebar.lock
Original file line number Diff line number Diff line change
@@ -1,7 +1,11 @@
{"1.2.0",
[{<<"aten">>,{pkg,<<"aten">>,<<"0.6.0">>},0},
{<<"gen_batch_server">>,{pkg,<<"gen_batch_server">>,<<"0.10.0">>},0},
{<<"seshat">>,{pkg,<<"seshat">>,<<"1.0.1">>},0}]}.
{<<"seshat">>,{pkg,<<"seshat">>,<<"1.0.1">>},0},
{<<"shu">>,
{git,"https://github.com/rabbitmq/shu.git",
{ref,"28adff94f0cc0e309b7be049cecc9d7107ef47c8"}},
0}]}.
[
{pkg_hash,[
{<<"aten">>, <<"7A57B275A6DAF515AC3683FB9853E280B4D0DCDD74292FD66AC4A01C8694F8C7">>},
Expand Down
22 changes: 22 additions & 0 deletions rebar3.crashdump
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
Error: terminated
[{io,format,
["===> Verifying dependencies...~n",[]],
[{file,"io.erl"},
{line,202},
{error_info,#{cause => {io,terminated},module => erl_stdlib_errors}}]},
{rebar_prv_install_deps,do,1,
[{file,"/home/runner/work/rebar3/rebar3/apps/rebar/src/rebar_prv_install_deps.erl"},
{line,73}]},
{rebar_core,do,2,
[{file,"/home/runner/work/rebar3/rebar3/apps/rebar/src/rebar_core.erl"},
{line,155}]},
{rebar3,run_aux,2,
[{file,"/home/runner/work/rebar3/rebar3/apps/rebar/src/rebar3.erl"},
{line,205}]},
{rebar3,main,1,
[{file,"/home/runner/work/rebar3/rebar3/apps/rebar/src/rebar3.erl"},
{line,66}]},
{init,start_it,1,[]},
{init,start_em,1,[]},
{init,do_boot,3,[]}]

4 changes: 2 additions & 2 deletions src/ra.app.src
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
{links,[{"github","https://github.com/rabbitmq/ra"}]},
{modules,[]},
{registered,[ra_sup]},
{applications,[kernel,stdlib,sasl,crypto,aten,gen_batch_server,
seshat]},
{applications,[kernel,stdlib,sasl,crypto,aten,gen_batch_server,
seshat,shu]},
{mod,{ra_app,[]}},
{env,[]}]}.
Loading
Loading