-
Notifications
You must be signed in to change notification settings - Fork 1
/
mix.exs
65 lines (58 loc) · 1.55 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
defmodule ConnGRPC.MixProject do
use Mix.Project
@source_url "https://github.com/TheRealReal/conn_grpc"
@version "0.2.0"
def project do
[
app: :conn_grpc,
version: @version,
name: "ConnGRPC",
description: "Persistent channels, and channel pools for gRPC Elixir",
elixir: "~> 1.12",
deps: deps(),
docs: docs(),
package: package(),
elixirc_paths: elixirc_paths(Mix.env())
]
end
def application do
[
extra_applications: [:logger]
]
end
defp elixirc_paths(:test), do: ["lib", "test/support"]
defp elixirc_paths(_), do: ["lib"]
defp deps do
[
{:backoff, "~> 1.1"},
{:grpc, "~> 0.0", only: [:dev, :test]},
{:telemetry, "~> 0.4 or ~> 1.0"},
{:mint, "~> 1.4.2", only: :test},
{:ex_doc, ">= 0.0.0", only: :dev, runtime: false}
]
end
defp package do
[
maintainers: ["TheRealReal"],
licenses: ["Apache-2.0"],
links: %{"GitHub" => @source_url}
]
end
defp docs do
[
source_ref: "v#{@version}",
canonical: "http://hexdocs.pm/conn_grpc",
source_url: @source_url,
main: "overview",
extras: [
"guides/overview.md": [filename: "overview", title: "Overview"],
"CHANGELOG.md": [filename: "changelog", title: "Changelog"],
"guides/telemetry.md": [filename: "telemetry", title: "Telemetry"]
],
groups_for_modules: [
Connection: [ConnGRPC.Channel, ConnGRPC.Pool],
Backoff: [ConnGRPC.Backoff, ConnGRPC.Backoff.Exponential]
]
]
end
end