-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathmix.exs
More file actions
35 lines (32 loc) · 848 Bytes
/
mix.exs
File metadata and controls
35 lines (32 loc) · 848 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
33
34
35
defmodule Mutineer.MixProject do
use Mix.Project
def project do
[
app: :mutineer,
version: "0.2.0",
elixir: "~> 1.14",
description:
"A chaos engineering library for Elixir that makes functions return errors based on configurable failure rates.",
start_permanent: Mix.env() == :prod,
deps: deps(),
package: [
name: :mutineer,
licenses: ["GPL-3.0"],
links: %{"GitHub" => "https://github.com/rum-and-code/mutineer"},
maintainers: ["rum-and-code", "hyftar"]
]
]
end
# Run "mix help compile.app" to learn about applications.
def application do
[
extra_applications: [:logger]
]
end
# Run "mix help deps" to learn about dependencies.
defp deps do
[
{:ex_doc, ">= 0.0.0", only: :dev, runtime: false}
]
end
end