-
Notifications
You must be signed in to change notification settings - Fork 40
/
mix.exs
61 lines (55 loc) · 1.49 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
defmodule Hammer.MixProject do
use Mix.Project
@source_url "https://github.com/ExHammer/hammer"
@version "7.0.0-rc.3"
def project do
[
app: :hammer,
description: "A rate-limiter with plugable backends.",
version: @version,
elixir: "~> 1.14",
start_permanent: Mix.env() == :prod,
deps: deps(),
docs: docs(),
package: package(),
test_coverage: [summary: [threshold: 90]]
]
end
def application do
[extra_applications: [:logger]]
end
defp deps do
[
{:benchee, "~> 1.2", only: :bench},
{:credo, "~> 1.7", only: [:dev, :test]},
{:ex_doc, "~> 0.34", only: :dev},
{:dialyxir, "~> 1.4", only: [:dev, :test], runtime: false}
# {:ex_rated, "~> 2.1", only: :bench},
# {:plug_attack, "~> 0.4.3", only: :bench},
# {:rate_limiter, "~> 0.4.0", only: :bench}
]
end
defp docs do
[
main: "readme",
extra_section: "GUIDES",
extras: ["CHANGELOG.md", "README.md"] ++ Path.wildcard("guides/*.md"),
skip_undefined_reference_warnings_on: ["CHANGELOG.md"],
source_url: @source_url,
source_ref: "v#{@version}",
homepage_url: @source_url,
assets: %{"assets" => "assets"}
]
end
defp package do
[
name: :hammer,
maintainers: ["Emmanuel Pinault", "June Kelly (june@junek.xyz)"],
licenses: ["MIT"],
links: %{
"GitHub" => @source_url,
"Changelog" => "#{@source_url}/blob/master/CHANGELOG.md"
}
]
end
end