Current section
Files
Jump to
Current section
Files
msgpack_decimal
mix.exs
mix.exs
defmodule MsgpackDecimal.MixProject do
use Mix.Project
def project do
[
app: :msgpack_decimal,
version: "1.0.0",
description: "[Un]pack Elixir :decimal Decimals from/to MessagePack extension fields",
package: package(),
source_url: "https://sr.ht/~nabijaczleweli/msgpack_datetime",
elixir: "~> 1.7",
start_permanent: Mix.env() == :prod,
deps: deps()
]
end
def application, do: []
defp deps do
[
{:decimal, "~> 2.0"},
{:msgpack, "~> 0.8"},
{:ex_doc, "~> 0.34", only: :dev, runtime: false, warn_if_outdated: true}
]
end
defp package do
[
licenses: ["0BSD"],
links: %{
"Upstream" => "https://sr.ht/~nabijaczleweli/msgpack_datetime",
"Bugs & Mailing List" => "https://lists.sr.ht/~nabijaczleweli/msgpack_datetime"
}
]
end
end