Skip to content

Commit

Permalink
Switches required to work for hex
Browse files Browse the repository at this point in the history
  • Loading branch information
martinsumner committed Jan 23, 2024
1 parent 999ce8b commit 91c2350
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 6 deletions.
7 changes: 4 additions & 3 deletions rebar.config
Original file line number Diff line number Diff line change
Expand Up @@ -24,9 +24,10 @@
]}
]}.

{project_plugins, [{rebar3_hex, "~> 7.0.7"}]}.

{deps, [
{lz4, ".*", {git, "https://github.com/martinsumner/erlang-lz4", {branch, "develop-3.1"}}},
{zstd, ".*", {git, "https://github.com/nhs-riak/zstd-erlang", {branch, "nhse-develop"}}}
]}.
{leveled_lz4, "~> 1.9.4-leveled-hex.4"},
{leveled_zstd, "~> 1.5.4-leveled-hex.2"}]}.

{ct_opts, [{dir, ["test/end_to_end"]}]}.
7 changes: 4 additions & 3 deletions src/leveled.app.src
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,14 @@
{vsn, git},
{registered, []},
{applications, [
lz4,
zstd,
leveled_lz4,
leveled_zstd,
kernel,
stdlib
]},
{maintainers, ["Martin Sumner"]},
{licenses, ["Apache"]},
{licenses, ["Apache-2.0"]},
{pkg_name, leveled},
{links, [{"Github", "https://github.com/martinsumner/leveled"}]},
{env, [{root_path, "test"}]}
]}.

0 comments on commit 91c2350

Please sign in to comment.