-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathmix.exs
More file actions
46 lines (43 loc) · 1.07 KB
/
mix.exs
File metadata and controls
46 lines (43 loc) · 1.07 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
defmodule Xpeg.MixProject do
use Mix.Project
def project do
[
app: :xpeg,
version: "0.10.0",
description: "Native Elixir PEG (Parsing Expression Grammars) string matching library",
elixir: "~> 1.10",
start_permanent: Mix.env() == :prod,
deps: deps(),
package: [
licenses: ["MIT"],
links: %{"GitHub" => "https://github.com/zevv/xpeg"}
],
docs: [
extras: ["README.md"],
logo: "xpeg.png"
],
files: [
"README.md",
"mix*",
"lib/codegen.ex",
"lib/linker.ex",
"lib/parser.ex",
"lib/xpeg.ex"
]
]
end
def application do
[
extra_applications: [:logger]
]
end
defp deps do
[
{:ex_doc, "~> 0.14", only: [:dev], runtime: false}
# {:exprof, "~> 0.2.0", only: [:dev, :test], runtime: false},
# {:poison, "~> 5.0", only: [:dev, :test], runtime: false},
# {:jason, "~> 1.2", only: [:dev, :test], runtime: false},
# {:eflame, "~> 1.0", only: [:dev, :test], runtime: false},
]
end
end