This repository was archived by the owner on Dec 14, 2022. It is now read-only.
forked from mertonium/redix
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmix.exs
More file actions
62 lines (53 loc) · 1.3 KB
/
mix.exs
File metadata and controls
62 lines (53 loc) · 1.3 KB
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
defmodule Redix.Mixfile do
use Mix.Project
@description "Fast, pipelined, resilient Redis driver for Elixir."
@repo_url "https://github.com/whatyouhide/redix"
@version "0.10.2"
def project() do
[
app: :redix,
version: @version,
elixir: "~> 1.6",
build_embedded: Mix.env() == :prod,
start_permanent: Mix.env() == :prod,
deps: deps(),
# Hex
package: package(),
description: @description,
# Docs
name: "Redix",
docs: [
main: "Redix",
source_ref: "v#{@version}",
source_url: @repo_url,
extras: [
"README.md",
"pages/Reconnections.md",
"pages/Real-world usage.md",
"pages/Telemetry.md",
"CHANGELOG.md"
]
]
]
end
def application() do
[extra_applications: [:logger, :ssl]]
end
defp package() do
[
maintainers: ["Andrea Leopardi", "Aleksei Magusev"],
licenses: ["MIT"],
links: %{"GitHub" => @repo_url}
]
end
defp deps() do
[
{:telemetry, "~> 0.4.0"},
{:castore, "~> 0.1.0", optional: true},
{:ex_doc, "~> 0.19", only: :dev},
{:dialyxir, "~> 1.0.0-rc.6", only: :dev},
{:stream_data, "~> 0.4", only: [:dev, :test]},
{:propcheck, "~> 1.1", only: :test}
]
end
end