forked from nktks/protobuf-elixir
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmix.exs
48 lines (41 loc) · 1.12 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
defmodule Protobuf.Mixfile do
use Mix.Project
@version "0.5.4"
def project do
[
app: :protobuf,
version: @version,
elixir: "~> 1.4",
build_embedded: Mix.env() == :prod,
start_permanent: Mix.env() == :prod,
deps: deps(),
escript: escript(),
description: description(),
package: package()
]
end
def application, do: []
defp deps do
[
{:dialyxir, "~> 0.5", only: [:dev, :test], runtime: false},
{:credo, "~> 0.8", only: [:dev, :test], runtime: false},
{:ex_doc, "~> 0.14", only: :dev, runtime: false},
{:eqc_ex, "~> 1.4", only: [:dev, :test]}
]
end
defp escript do
[main_module: Protobuf.Protoc.CLI, name: "protoc-gen-elixir", app: nil]
end
defp description do
"A pure Elixir implementation of Google Protobuf."
end
defp package do
[
maintainers: ["Bing Han"],
licenses: ["MIT"],
links: %{"GitHub" => "https://github.com/tony612/protobuf-elixir"},
files:
~w(mix.exs README.md lib/google lib/protobuf lib/protobuf.ex src config LICENSE priv/templates .formatter.exs)
]
end
end