forked from potatosalad/erlang-jose
-
Notifications
You must be signed in to change notification settings - Fork 0
/
mix.exs
78 lines (72 loc) · 2.15 KB
/
mix.exs
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
defmodule JOSE.Mixfile do
use Mix.Project
def project do
[app: :jose,
version: "1.8.4",
elixir: "~> 1.0",
erlc_options: erlc_options(),
build_embedded: Mix.env == :prod,
start_permanent: Mix.env == :prod,
deps: deps(),
name: "JOSE",
source_url: "https://github.com/potatosalad/erlang-jose",
docs: fn ->
{ref, 0} = System.cmd("git", ["rev-parse", "--verify", "--quiet", "HEAD"])
[source_ref: ref, main: "JOSE", extras: ["README.md", "CHANGELOG.md",
"examples/KEY-GENERATION.md", "ALGORITHMS.md"]]
end,
description: description(),
package: package()]
end
def application do
[mod: {:jose_app, []},
applications: [:crypto, :asn1, :public_key, :base64url]]
end
defp deps do
[{:base64url, "~> 0.0.1"},
{:cutkey, github: "potatosalad/cutkey", only: [:dev, :test]},
{:jsone, "~> 1.4", only: [:dev, :test]},
{:jsx, "~> 2.8", only: [:dev, :test]},
# {:keccakf1600, "~> 2.0.0", only: [:dev, :test]},
{:libdecaf, "~> 0.0.4", only: [:dev, :test]},
{:libsodium, "~> 0.0.10", only: [:dev, :test]},
{:ojson, "~> 1.0", only: [:dev, :test]},
{:poison, "~> 3.1", only: [:dev, :test]},
{:ex_doc, "~> 0.15", only: :docs},
{:earmark, "~> 1.2", only: :docs}]
end
defp description do
"JSON Object Signing and Encryption (JOSE) for Erlang and Elixir."
end
def erlc_options do
extra_options = try do
case :erlang.list_to_integer(:erlang.system_info(:otp_release)) do
v when v >= 18 ->
[{:d, :optional_callbacks}]
_ ->
[]
end
catch
_ ->
[]
end
[:debug_info | (if Mix.env == :prod, do: [], else: [:warnings_as_errors]) ++ extra_options]
end
defp package do
[maintainers: ["Andrew Bennett"],
files: [
"CHANGELOG*",
"include",
"lib",
"LICENSE*",
"priv",
"mix.exs",
"README*",
"rebar.config",
"src"
],
licenses: ["Mozilla Public License Version 2.0"],
links: %{"Github" => "https://github.com/potatosalad/erlang-jose",
"Docs" => "https://hexdocs.pm/jose"}]
end
end