Skip to content

Commit

Permalink
v0.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
samuelmanzanera committed Jul 3, 2024
1 parent b9704b4 commit 36f020b
Show file tree
Hide file tree
Showing 3 changed files with 22 additions and 75 deletions.
10 changes: 4 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,11 +1,10 @@
# BlsEx

**TODO: Add description**
This package is Elixir utility to work with BLS signature scheme supporting aggregation of signatures and public keys along with signature and verification.

## Installation

If [available in Hex](https://hex.pm/docs/publish), the package can be installed
by adding `bls_ex` to your list of dependencies in `mix.exs`:
Adds `bls_ex` to your list of dependencies in `mix.exs`:

```elixir
def deps do
Expand All @@ -15,7 +14,6 @@ def deps do
end
```

Documentation can be generated with [ExDoc](https://github.com/elixir-lang/ex_doc)
and published on [HexDocs](https://hexdocs.pm). Once published, the docs can
be found at <https://hexdocs.pm/bls_ex>.
## Documentation

Documentation is [available on Hexdocs](https://hexdocs.pm/bls_ex)
19 changes: 18 additions & 1 deletion mix.exs
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,24 @@ defmodule BlsEx.MixProject do
version: "0.1.0",
elixir: "~> 1.14",
start_permanent: Mix.env() == :prod,
deps: deps()
description: "BLS signature utility for Elixir",
deps: deps(),
package: package()
]
end

defp package do
[
files: [
"lib",
"native/bls/.cargo",
"native/bls/src",
"native/bls/Cargo*",
"checksum-*.exs",
"mix.exs"
],
licenses: ["AGPL-3.0-or-later"],
links: %{"GitHub" => "https://github.com/archethic-foundation/bls_ex"}
]
end

Expand Down
68 changes: 0 additions & 68 deletions release.yml

This file was deleted.

0 comments on commit 36f020b

Please sign in to comment.