defmodule MsgpackDateTime.MixProject do use Mix.Project def project do [ app: :msgpack_datetime, version: "0.2.0", description: "Unpack Elixir DateTimes from msgpack extension -1 timestamp 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 [ {:msgpack, "~> 0.8", only: [:test]}, {: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