Skip to content

Commit 6bac2b5

Browse files
committed
Setup Hex Publication
1 parent 779d35a commit 6bac2b5

File tree

3 files changed

+41
-1
lines changed

3 files changed

+41
-1
lines changed

rebar.config

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,17 @@
22
%% SPDX-FileCopyrightText: 2025 Stritzinger GmbH
33

44
{erl_opts, [debug_info]}.
5+
56
{deps, [
67
{hackney, "1.25.0"}
78
]}.
9+
10+
{project_plugins, [rebar3_hex, rebar3_ex_doc]}.
11+
12+
{ex_doc, [
13+
{extras, ["README.md"]},
14+
{main, "README.md"},
15+
{source_url, "https://github.com/erlef/cassone"}
16+
]}.
17+
18+
{hex, [{doc, ex_doc}]}.

rebar.lock

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
{"1.2.0",
2+
[{<<"certifi">>,{pkg,<<"certifi">>,<<"2.15.0">>},1},
3+
{<<"hackney">>,{pkg,<<"hackney">>,<<"1.25.0">>},0},
4+
{<<"idna">>,{pkg,<<"idna">>,<<"6.1.1">>},1},
5+
{<<"metrics">>,{pkg,<<"metrics">>,<<"1.0.1">>},1},
6+
{<<"mimerl">>,{pkg,<<"mimerl">>,<<"1.4.0">>},1},
7+
{<<"parse_trans">>,{pkg,<<"parse_trans">>,<<"3.4.1">>},1},
8+
{<<"ssl_verify_fun">>,{pkg,<<"ssl_verify_fun">>,<<"1.1.7">>},1},
9+
{<<"unicode_util_compat">>,{pkg,<<"unicode_util_compat">>,<<"0.7.1">>},1}]}.
10+
[
11+
{pkg_hash,[
12+
{<<"certifi">>, <<"0E6E882FCDAAA0A5A9F2B3DB55B1394DBA07E8D6D9BCAD08318FB604C6839712">>},
13+
{<<"hackney">>, <<"390E9B83F31E5B325B9F43B76E1A785CBDB69B5B6CD4E079AA67835DED046867">>},
14+
{<<"idna">>, <<"8A63070E9F7D0C62EB9D9FCB360A7DE382448200FBBD1B106CC96D3D8099DF8D">>},
15+
{<<"metrics">>, <<"25F094DEA2CDA98213CECC3AEFF09E940299D950904393B2A29D191C346A8486">>},
16+
{<<"mimerl">>, <<"3882A5CA67FBBE7117BA8947F27643557ADEC38FA2307490C4C4207624CB213B">>},
17+
{<<"parse_trans">>, <<"6E6AA8167CB44CC8F39441D05193BE6E6F4E7C2946CB2759F015F8C56B76E5FF">>},
18+
{<<"ssl_verify_fun">>, <<"354C321CF377240C7B8716899E182CE4890C5938111A1296ADD3EC74CF1715DF">>},
19+
{<<"unicode_util_compat">>, <<"A48703A25C170EEDADCA83B11E88985AF08D35F37C6F664D6DCFB106A97782FC">>}]},
20+
{pkg_hash_ext,[
21+
{<<"certifi">>, <<"B147ED22CE71D72EAFDAD94F055165C1C182F61A2FF49DF28BCC71D1D5B94A60">>},
22+
{<<"hackney">>, <<"7209BFD75FD1F42467211FF8F59EA74D6F2A9E81CBCEE95A56711EE79FD6B1D4">>},
23+
{<<"idna">>, <<"92376EB7894412ED19AC475E4A86F7B413C1B9FBB5BD16DCCD57934157944CEA">>},
24+
{<<"metrics">>, <<"69B09ADDDC4F74A40716AE54D140F93BEB0FB8978D8636EADED0C31B6F099F16">>},
25+
{<<"mimerl">>, <<"13AF15F9F68C65884ECCA3A3891D50A7B57D82152792F3E19D88650AA126B144">>},
26+
{<<"parse_trans">>, <<"620A406CE75DADA827B82E453C19CF06776BE266F5A67CFF34E1EF2CBB60E49A">>},
27+
{<<"ssl_verify_fun">>, <<"FE4C190E8F37401D30167C8C405EDA19469F34577987C76DDE613E838BBC67F8">>},
28+
{<<"unicode_util_compat">>, <<"B3A917854CE3AE233619744AD1E0102E05673136776FB2FA76234F3E03B23642">>}]}
29+
].

src/cassone.app.src

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
%% SPDX-FileCopyrightText: 2025 Stritzinger GmbH
33

44
{application, cassone, [
5-
{description, "A rebar plugin"},
5+
{description, "Rebar3 plugin to package Erlang escripts and releases in standalone executables"},
66
{vsn, "0.1.0"},
77
{registered, []},
88
{applications, [

0 commit comments

Comments
 (0)