We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8f1887e commit a674759Copy full SHA for a674759
mix.exs
@@ -7,10 +7,21 @@ defmodule LoggerBinary.MixProject do
7
version: "0.1.0",
8
elixir: "~> 1.12",
9
start_permanent: Mix.env() == :prod,
10
- deps: deps()
+ deps: deps(),
11
+ description: "A custom Logger formatter for handling binary data.",
12
+ package: package(),
13
+ docs: docs()
14
]
15
end
16
17
+ defp package do
18
+ [licenses: ["MIT"], links: %{"GitHub" => "https://github.com/tagbase-io/logger-binary"}]
19
+ end
20
+
21
+ defp docs do
22
+ [main: "LoggerBinary"]
23
24
25
# Run "mix help compile.app" to learn about applications.
26
def application do
27
[
0 commit comments