-
Notifications
You must be signed in to change notification settings - Fork 3
/
mix.exs
92 lines (85 loc) · 2.33 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
defmodule Sibyl.MixProject do
use Mix.Project
def project do
[
app: :sibyl,
version: "0.1.10",
elixir: "~> 1.12",
start_permanent: Mix.env() == :prod,
deps: deps(),
aliases: aliases(),
dialyzer: [
plt_add_apps: [:iex, :mix, :ex_unit],
plt_file: {:no_warn, "priv/plts/dialyzer.plt"},
flags: [:error_handling]
],
test_coverage: [tool: ExCoveralls],
preferred_cli_env: [
lint: :test,
dialyzer: :test,
coveralls: :test,
"coveralls.detail": :test,
"coveralls.post": :test,
"coveralls.html": :test,
"test.watch": :test
],
name: "Sibyl",
package: package(),
description: description(),
source_url: "https://github.com/vetspire/sibyl",
homepage_url: "https://github.com/vetspire/sibyl",
docs: [
main: "Sibyl"
]
]
end
def application do
[
mod: {Sibyl.Application, []},
extra_applications: [:logger, :runtime_tools]
]
end
defp description() do
"""
Sibyl is a library which augments the BEAM's default tracing capabilities by hooking
into `:telemetry`, `:dbg` (the BEAM's built in tracing and debugging functionality),
and `OpenTelemetry`.
"""
end
defp package() do
[
licenses: ["MIT"],
links: %{"GitHub" => "https://github.com/vetspire/sibyl"}
]
end
defp deps do
[
# Sibyl's actual dependencies
{:jason, "~> 1.3"},
{:decorator, "~> 1.2"},
{:opentelemetry, "~> 1.1"},
{:opentelemetry_api, "~> 1.1"},
{:opentelemetry_exporter, "~> 1.1"},
{:opentelemetry_telemetry, "~> 1.0"},
{:opentelemetry_process_propagator, "~> 0.1.0 or ~> 0.2.0"},
{:telemetry, "~> 1.0"},
# Runtime dependencies for tests / linting
{:credo, "~> 1.6", only: [:dev, :test], runtime: false},
{:dialyxir, "~> 1.0", only: [:dev, :test], runtime: false},
{:ex_doc, "~> 0.28", only: :dev},
{:excoveralls, "~> 0.10", only: :test},
{:mix_test_watch, "~> 1.0", only: [:test], runtime: false}
]
end
defp aliases do
[
test: ["coveralls.html --trace --slowest 10"],
lint: [
"format --check-formatted --dry-run",
"credo --strict",
"compile --warnings-as-errors",
"dialyzer"
]
]
end
end