-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmix.exs
43 lines (39 loc) · 993 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
42
43
defmodule EnvoyDataPlaneApi.MixProject do
use Mix.Project
def project do
[
app: :envoy_data_plane_api,
version: "0.2.0",
description: "Elixir protobuf definitions for Envoy's data plane API",
elixir: "~> 1.15",
start_permanent: Mix.env() == :prod,
compilers: Mix.compilers(),
elixirc_paths: ["lib", "gen"],
deps: deps(),
package: package(),
source_url: "https://github.com/costaraphael/elixir-envoy-data-plane-api"
]
end
def application do
[
extra_applications: [:logger]
]
end
defp deps do
[
{:protobuf, "~> 0.12.0"},
{:grpc, "~> 0.9"},
{:google_protos, "~> 0.4"},
{:ex_doc, "~> 0.31", only: :dev, runtime: false}
]
end
defp package do
[
licenses: ["MIT"],
files: ["mix.exs", "README.md", "LICENSE", "gen", "Makefile"],
links: %{
"Github" => "https://github.com/costaraphael/elixir-envoy-data-plane-api"
}
]
end
end