-
Notifications
You must be signed in to change notification settings - Fork 1
/
mix.exs
35 lines (32 loc) · 842 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 AvlTree.MixProject do
use Mix.Project
def project do
[
app: :avl_tree,
version: "1.0.0",
elixir: "~> 1.6",
start_permanent: Mix.env() == :prod,
name: "AVLTree",
description: "Pure Elixir AVL tree implementation",
deps: deps(),
docs: [extras: ["README.md"]],
package: [
maintainers: ["Jack Applegame"],
licenses: ["MIT"],
links: %{"GitHub" => "https://github.com/japplegame/avl_tree"},
files: ["lib", "test", "bench", "mix.exs", "README.md", "LICENSE"]
]
]
end
# Run "mix help compile.app" to learn about applications.
def application do
[]
end
# Run "mix help deps" to learn about dependencies.
defp deps do
[
{:benchee, "~> 1.0", only: :dev},
{:ex_doc, "~> 0.22", only: :dev}
]
end
end