-
Notifications
You must be signed in to change notification settings - Fork 2
/
mix.exs
41 lines (37 loc) · 776 Bytes
/
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
defmodule Tzdb.MixProject do
use Mix.Project
def project do
[
app: :tzdb_test,
version: "0.2.0",
package: package(),
elixir: "~> 1.14",
description: "Testing Elixir time zone databases",
start_permanent: Mix.env() == :prod,
deps: deps()
]
end
def application do
[
extra_applications: [:logger]
]
end
defp package do
[
licenses: ["Apache-2.0"],
maintainers: ["Mathieu Decaffmeyer"],
links: %{
"GitHub" => "https://github.com/mathieuprog/tzdb_test"
}
]
end
defp deps do
[
{:tz, "~> 0.26.5"},
{:time_zone_info, "~> 0.7.3"},
{:tzdata, "~> 1.1.1"},
{:zoneinfo, "~> 0.1.8"},
{:ex_doc, "~> 0.34", only: :dev}
]
end
end