-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathmix.exs
More file actions
67 lines (61 loc) · 1.5 KB
/
mix.exs
File metadata and controls
67 lines (61 loc) · 1.5 KB
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
defmodule Rez.MixProject do
use Mix.Project
@version "1.9.8-rc4"
def project do
[
app: :rez,
version: @version,
elixir: "~> 1.19",
start_permanent: Mix.env() == :prod,
deps: deps(),
escript: [main_module: Rez]
]
end
def application do
[
extra_applications: [:logger, :eex, :crypto, :iex, :tools]
]
end
# Run "mix help deps" to learn about dependencies.
defp deps do
[
{:ergo, "~> 1.0"},
# {:ergo, path: "/Users/matt/Projects/Elixir/ergo"},
{:logical_file, "~> 1.1"},
# {:logical_file, path: "/Users/matt/Projects/Elixir/logical_file"},
# {:mix_test_watch, "~> 1.0", only: :dev},
{:credo, "~> 1.7", only: [:dev, :test], runtime: false},
{:elixir_uuid, "~> 1.2"},
{:temp, "~> 0.4"},
{:ex_image_info, "~> 1.0"},
{:inflectorex, "~> 0.1.2"},
{:burrito, "~> 1.0"},
{:mime, "~> 2.0"},
{:rename, "~> 0.1.0"},
{:req, "~> 0.5"},
{:poison, "~> 6.0"},
{:dialyxir, "~> 1.3", runtime: false},
{:apex, "~>1.2.1"},
{:scribe, "~> 0.11"},
{:lua, "~> 0.3.0"},
{:toml, "~> 0.7"}
]
end
def rez_version() do
@version
end
def releases() do
[
rez: [
steps: [:assemble, &Burrito.wrap/1],
burrito: [
targets: [
macos: [os: :darwin, cpu: :x86_64],
linux: [os: :linux, cpu: :x86_64],
windows: [os: :windows, cpu: :x86_64]
]
]
]
]
end
end