-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathmix.exs
35 lines (31 loc) · 843 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
defmodule RedBlackTree.Mixfile do
use Mix.Project
def project do
[app: :red_black_tree,
version: "1.2.0",
source_url: "https://github.com/SenecaSystems/red_black_tree",
description: "Red-Black trees: an ordered key-value store with O(log(N)) performance",
elixir: "~> 1.4",
build_embedded: Mix.env == :prod,
start_permanent: Mix.env == :prod,
deps: deps(),
package: package()]
end
def application do
[applications: [:logger]]
end
defp package do
[
files: ["lib", "mix.exs", "README.md", "LICENSE"],
contributors: ["Seneca Systems"],
licenses: ["MIT"],
links: %{"GitHub" => "https://github.com/SenecaSystems/red_black_tree"}
]
end
defp deps do
[
{:earmark, "~> 0.1", only: :dev},
{:ex_doc, "~> 0.7", only: :dev}
]
end
end