Skip to content

Commit

Permalink
Merge pull request #2 from farhadi/spinlock
Browse files Browse the repository at this point in the history
spinlock
  • Loading branch information
farhadi authored Jan 28, 2024
2 parents 260135b + 8742223 commit c36d853
Show file tree
Hide file tree
Showing 7 changed files with 178 additions and 214 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,6 @@ jobs:
- name: Generate coverage reports
run: rebar3 covertool generate

- uses: codecov/codecov-action@v1
- uses: codecov/codecov-action@v3
with:
file: _build/test/covertool/cuckoo_filter.covertool.xml
9 changes: 9 additions & 0 deletions rebar.config
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
{erl_opts, [debug_info]}.
{deps, [{spinlock, "0.2.1"}]}.

{profiles, [
{test, [{deps, [{xxh3, "0.3.5"}]}]}
Expand All @@ -11,3 +12,11 @@
{plugins, [covertool]}.

{covertool, [{coverdata_files, ["ct.coverdata"]}]}.

{hex, [{doc, ex_doc}]}.

{ex_doc, [
{source_url, <<"https://github.com/farhadi/cuckoo_filter">>},
{extras, [<<"README.md">>, <<"LICENSE">>]},
{main, <<"readme">>}
]}.
9 changes: 8 additions & 1 deletion rebar.lock
Original file line number Diff line number Diff line change
@@ -1 +1,8 @@
[].
{"1.2.0",
[{<<"spinlock">>,{pkg,<<"spinlock">>,<<"0.2.1">>},0}]}.
[
{pkg_hash,[
{<<"spinlock">>, <<"0B19C946EE7C3F005B1FF856F712352540095DD823EE03F5352D9818602E9D60">>}]},
{pkg_hash_ext,[
{<<"spinlock">>, <<"1A7FA7EFD642C1D36EC253D3C6EF6A50863B3E934318404A29F418564D68981B">>}]}
].
3 changes: 2 additions & 1 deletion src/cuckoo_filter.app.src
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,8 @@
{registered, []},
{applications, [
kernel,
stdlib
stdlib,
spinlock
]},
{env, []},
{modules, []},
Expand Down
Loading

0 comments on commit c36d853

Please sign in to comment.