diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 573c1a9..5430738 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -14,11 +14,11 @@ jobs: matrix: nif: ["2.15"] job: - - { target: arm-unknown-linux-gnueabihf , os: ubuntu-22.04 , use-cross: true } - - { target: aarch64-unknown-linux-gnu , os: ubuntu-22.04 , use-cross: true } - # - { target: aarch64-unknown-linux-musl , os: ubuntu-22.04 , use-cross: true } - - { target: x86_64-unknown-linux-musl , os: ubuntu-22.04 , use-cross: true } - - { target: x86_64-unknown-linux-gnu , os: ubuntu-22.04 } + - { target: arm-unknown-linux-gnueabihf , os: ubuntu-20.04 , use-cross: true } + - { target: aarch64-unknown-linux-gnu , os: ubuntu-20.04 , use-cross: true } + # - { target: aarch64-unknown-linux-musl , os: ubuntu-20.04 , use-cross: true } + - { target: x86_64-unknown-linux-musl , os: ubuntu-20.04 , use-cross: true } + - { target: x86_64-unknown-linux-gnu , os: ubuntu-20.04 } - { target: x86_64-apple-darwin , os: macos-11 } - { target: aarch64-apple-darwin , os: macos-11 } - { target: x86_64-pc-windows-gnu , os: windows-2019 } diff --git a/mix.exs b/mix.exs index f817d05..a1a0ead 100644 --- a/mix.exs +++ b/mix.exs @@ -49,11 +49,16 @@ defmodule ExPoppy.MixProject do ], maintainers: ["gallypette"], licenses: ["BSD-3-Clause"], - links: %{"GitHub" => @repo_url} + links: %{ + "GitHub" => @repo_url, + "Poppy bloom filter library explained" => + "https://www.misp-project.org/2024/03/25/Poppy-a-new-bloom-filter-format-and-project.html/", + "Original Poppy rust library" => "https://github.com/hashlookup/poppy/", + "Hashlookup" => "https://hashlookup.io" + } ] end - defp docs do [ main: "ex_poppy", diff --git a/native/ex_poppy/Cargo.toml b/native/ex_poppy/Cargo.toml index f6222f3..a035548 100644 --- a/native/ex_poppy/Cargo.toml +++ b/native/ex_poppy/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "ex_poppy" version = "0.1.4" -authors = [] +authors = ["Quentin Jérôme", "Jean-Louis Huynen"] edition = "2021" [lib]