Current section
Files
Jump to
Current section
Files
pointers_ulid
mix.exs
mix.exs
defmodule Pointers.ULID.MixProject do
use Mix.Project
def project do
[
app: :pointers_ulid,
version: "0.2.2",
elixir: "~> 1.10",
start_permanent: Mix.env() == :prod,
description: "A maintained ULID datatype for Ecto",
homepage_url: "https://github.com/commonspub/pointers_ulid",
source_url: "https://github.com/commonspub/pointers_ulid",
package: [
licenses: ["MIT"],
links: %{
"Repository" => "https://github.com/commonspub/pointers_ulid",
"Hexdocs" => "https://hexdocs.pm/pointers_ulid",
},
],
docs: [
main: "readme", # The first page to display from the docs
extras: ["README.md"], # extra pages to include
],
deps: deps(),
]
end
# Run "mix help compile.app" to learn about applications.
def application do
[]
end
defp deps do
[
{:ecto, "~> 3.4"},
{:ecto_sql, "~> 3.4", optional: true}, # you might just want it for in-memory use
{:ex_doc, "~> 0.16", only: :dev, runtime: false},
]
end
end