-
Notifications
You must be signed in to change notification settings - Fork 0
/
mix.exs
44 lines (38 loc) · 951 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
44
defmodule MintWebsocketClient.MixProject do
use Mix.Project
@version "0.1.1"
@source_url "https://github.com/vshev4enko/mint_websocket_client"
def project do
[
app: :mint_websocket_client,
version: @version,
elixir: "~> 1.14",
deps: deps(),
name: "MintWebsocketClient",
source_url: @source_url,
docs: [source_ref: "v#{@version}", main: "readme", extras: ["README.md"]],
description: description(),
package: package()
]
end
def application do
[]
end
defp deps do
[
{:cowboy, "~> 2.9", optional: true},
{:ex_doc, "~> 0.27", only: :dev, runtime: false},
{:mint_web_socket, "~> 1.0"}
]
end
defp description() do
"Behaviour module for implementing websocket clients."
end
defp package() do
[
maintainers: ["Viacheslav Shevchenko"],
licenses: ["Apache-2.0"],
links: %{"GitHub" => @source_url}
]
end
end