File tree Expand file tree Collapse file tree 2 files changed +6
-6
lines changed
rabbitmq_consistent_hash_exchange Expand file tree Collapse file tree 2 files changed +6
-6
lines changed Original file line number Diff line number Diff line change 44
44
apps = ["mnesia" ],
45
45
libs = ["//deps/rabbitmq_cli:elixir" ],
46
46
plt = "//:base_plt" ,
47
- deps = ["//deps/rabbitmq_cli:elixir" ] + BUILD_DEPS + DEPS ,
47
+ deps = ["//deps/rabbitmq_cli:elixir" ] + BUILD_DEPS + DEPS + RUNTIME_DEPS ,
48
48
)
49
49
50
50
dialyze (
Original file line number Diff line number Diff line change @@ -52,7 +52,9 @@ DEPS = [
52
52
"@ranch//:erlang_app" ,
53
53
]
54
54
55
- EXTRA_APPS = [ "ssl" ]
55
+ RUNTIME_DEPS = [
56
+ "//deps/rabbit:erlang_app" ,
57
+ ]
56
58
57
59
rabbitmq_app (
58
60
app_description = APP_DESCRIPTION ,
@@ -61,8 +63,8 @@ rabbitmq_app(
61
63
app_module = APP_MODULE ,
62
64
app_name = APP_NAME ,
63
65
build_deps = BUILD_DEPS ,
66
+ runtime_deps = RUNTIME_DEPS ,
64
67
deps = DEPS ,
65
- extra_apps = EXTRA_APPS ,
66
68
)
67
69
68
70
xref (
71
73
72
74
plt (
73
75
name = "base_plt" ,
74
- plt = "//:base_plt" ,
75
- apps = EXTRA_APPS ,
76
76
libs = ["//deps/rabbitmq_cli:elixir" ],
77
- deps = ["//deps/rabbitmq_cli:elixir" ] + BUILD_DEPS + DEPS ,
77
+ deps = ["//deps/rabbitmq_cli:elixir" ] + BUILD_DEPS + DEPS + RUNTIME_DEPS ,
78
78
)
79
79
80
80
dialyze (
You can’t perform that action at this time.
0 commit comments