defmodule Ecto.ULID.Mixfile do use Mix.Project def project do [ app: :ecto_ulid_next, version: "0.3.0", elixir: "~> 1.7", start_permanent: Mix.env() == :prod, deps: deps(), name: "Ecto.ULID", description: "An Ecto.Type implementation of ULID.", package: package(), source_url: "https://github.com/woylie/ecto-ulid", homepage_url: "https://github.com/woylie/ecto-ulid", docs: [main: "Ecto.ULID"] ] end def application do [ extra_applications: [:logger] ] end defp package do [ maintainers: ["David Cuddeback"], licenses: ["MIT"], links: %{"GitHub" => "https://github.com/woylie/ecto-ulid"} ] end defp deps do [ {:ecto, "~> 3.2"}, {:benchfella, "~> 0.3.5", only: [:dev, :test]}, {:ex_doc, "~> 0.16", only: :dev, runtime: false} ] end end