-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmix.exs
44 lines (41 loc) · 1.13 KB
/
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 ModuleStore.MixProject do
use Mix.Project
def project do
[
app: :module_store,
version: "0.0.0+development",
elixir: "~> 1.14",
start_permanent: Mix.env() == :prod,
deps: deps(),
description: """
Compiled-at-runtime modules as high-read-performance key-value stores
""",
package: [
licenses: ["Apache-2.0"],
links: %{github: "https://github.com/juulSme/ModuleStore"},
source_url: "https://github.com/juulSme/ModuleStore"
],
source_url: "https://github.com/juulSme/ModuleStore",
name: "ModuleStore",
docs: [
source_ref: ~s(main),
extras: ~w(./README.md ./LICENSE.md),
main: "readme",
skip_undefined_reference_warnings_on: ~w()
]
]
end
# Run "mix help compile.app" to learn about applications.
def application do
[
extra_applications: [:logger, :crypto]
]
end
# Run "mix help deps" to learn about dependencies.
defp deps do
[
{:ex_doc, "~> 0.36", only: [:dev, :test], runtime: false},
{:benchee, "~> 1.0", only: [:dev], runtime: false}
]
end
end