Skip to content

Commit

Permalink
Merge pull request #9 from arturz/feature/fix-missing-pc-dependency
Browse files Browse the repository at this point in the history
Install missing pc dependency for Elixir compatibility
  • Loading branch information
mmzeeman committed Mar 22, 2024
2 parents af4be0d + bccd7cf commit 8cb34a4
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 10 deletions.
20 changes: 11 additions & 9 deletions rebar.config
Original file line number Diff line number Diff line change
Expand Up @@ -28,22 +28,20 @@
]},

{dialyzer, [
{warnings, [
no_return
]}
{warnings, [
no_return
]}
]},

{cover_enabled, true},
{cover_print_enabled, true},
{plugins, [pc]},
{artifacts, ["priv/eiconv_nif.so"]},
{provider_hooks, [
{post,
[
{compile, {pc, compile}},
{clean, {pc, clean}}
]
}
{post, [
{compile, {pc, compile}},
{clean, {pc, clean}}
]}
]}
]},
{edoc_private, [
Expand All @@ -54,3 +52,7 @@
{edoc_opts, [
{preprocess, true}, {stylesheet, "style.css"}
]}.

{deps, [
{pc, "1.14.0"}
]}.
9 changes: 8 additions & 1 deletion rebar.lock
Original file line number Diff line number Diff line change
@@ -1 +1,8 @@
[].
{"1.2.0",
[{<<"pc">>,{pkg,<<"pc">>,<<"1.14.0">>},0}]}.
[
{pkg_hash,[
{<<"pc">>, <<"9893B4D99922ADCB7553A4D603988F672693688ECC1C934230309D5A37DBDD3E">>}]},
{pkg_hash_ext,[
{<<"pc">>, <<"FC597E5356AF714615E6BAEEFAA8262BE09DE7849BF92AA57672DB5E409A3553">>}]}
].

0 comments on commit 8cb34a4

Please sign in to comment.