forked from mana-ethereum/bn
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmix.exs
More file actions
33 lines (30 loc) · 743 Bytes
/
Copy pathmix.exs
File metadata and controls
33 lines (30 loc) · 743 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
defmodule Bn.MixProject do
use Mix.Project
def project do
[
app: :bn,
version: "0.2.2",
elixir: "~> 1.7",
description: "BN128 elliptic curve operations for Elixir",
package: [
maintainers: ["Ayrat Badykov"],
licenses: ["MIT", "Apache-2.0"],
links: %{"GitHub" => "https://github.com/poanetwork/bn"}
],
start_permanent: Mix.env() == :prod,
deps: deps()
]
end
def application do
[
extra_applications: [:logger]
]
end
defp deps do
[
{:ex_doc, ">= 0.0.0", only: :dev, runtime: false},
{:credo, "~> 1.6", only: [:dev, :test], runtime: false},
{:dialyxir, "~> 1.1", only: [:dev, :test], runtime: false}
]
end
end