-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmix.exs
57 lines (51 loc) · 1.42 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
45
46
47
48
49
50
51
52
53
54
55
56
57
defmodule ExWal.MixProject do
@moduledoc false
use Mix.Project
@name "ex_wal"
@version "0.3.0"
@repo_url "https://github.com/tt67wq/ex_wal"
@description "ExWal is a project that aims to provide a solution for managing write-ahead log (WAL) in Elixir."
def project do
[
app: :ex_wal,
version: @version,
elixir: "~> 1.15",
start_permanent: Mix.env() == :prod,
elixirc_paths: elixirc_paths(Mix.env()),
deps: deps(),
source_url: @repo_url,
name: @name,
package: package(),
description: @description
]
end
defp elixirc_paths(:test), do: ["lib", "test", "test/support"]
defp elixirc_paths(:dev), do: ["lib", "benchmarks"]
defp elixirc_paths(_), do: ["lib"]
# Run "mix help compile.app" to learn about applications.
def application do
[
extra_applications: [:logger]
]
end
defp package do
[
licenses: ["MIT"],
links: %{
"GitHub" => @repo_url
}
]
end
# Run "mix help deps" to learn about dependencies.
defp deps do
[
{:nimble_options, "~> 1.1"},
{:benchee, "~> 1.3", only: :dev},
{:stream_data, "~> 0.5", only: :test},
{:styler, "~> 0.11", only: [:dev, :test], runtime: false},
{:dialyxir, "~> 1.3", only: [:dev], runtime: false},
{:credo, "~> 1.7", only: [:dev, :test], runtime: false},
{:ex_doc, "~> 0.29", only: :dev, runtime: false}
]
end
end