-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathmix.exs
More file actions
32 lines (29 loc) · 677 Bytes
/
Copy pathmix.exs
File metadata and controls
32 lines (29 loc) · 677 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
defmodule DynamoNode.MixProject do
use Mix.Project
def project do
[
app: :dynamo_node,
version: "0.1.0",
elixir: "~> 1.19",
start_permanent: Mix.env() == :prod,
deps: deps(),
test_pattern: "*_test.exs"
]
end
# Run "mix help compile.app" to learn about applications.
def application do
[
extra_applications: [:logger],
mod: {DynamoNode.Application, []}
]
end
# Run "mix help deps" to learn about dependencies.
defp deps do
[
{:stream_data, "~> 1.0", only: :test},
{:ex_hash_ring, "~> 6.0"},
{:libcluster, "~> 3.3"},
{:benchee, "~> 1.3", only: :bench}
]
end
end