forked from meh/elixir-socket
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmix.exs
More file actions
36 lines (32 loc) · 766 Bytes
/
Copy pathmix.exs
File metadata and controls
36 lines (32 loc) · 766 Bytes
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
defmodule Socket.MixProject do
use Mix.Project
def project do
[
app: :socket2,
elixir: "~> 1.12",
version: "2.2.0",
deps: deps(),
package: package(),
description: "Socket handling library for Elixir, updated for OTP20+ by the witchtails team"
]
end
# Configuration for the OTP application
def application do
[extra_applications: [:crypto, :ssl, :logger]]
end
defp deps do
[
{:certifi, "~> 2.12"},
{:ex_doc, "~> 0.30", only: [:dev]},
{:credo, "~> 1.7", only: [:dev]}
]
end
defp package do
[
name: :socket2,
maintainers: ["dominicletz"],
licenses: ["WTFPL"],
links: %{"GitHub" => "https://github.com/witchtails/elixir-socket2"}
]
end
end