mix.exs

defmodule Chaindexing.MixProject do
  use Mix.Project

  def project() do
    [
      app: :chaindexing,
      version: "0.0.1",
      elixir: "~> 1.14",
      description: "Helps index EVM Chains",
      package: [
        licenses: ["MIT", "Apache-2.0"],
        links: %{
          github: "https://github.com/Jurshsmith/chaindexing-ex"
        }
      ],
      deps: deps()
    ]
  end

  def application() do
    []
  end

  defp deps() do
    [
      {:ex_doc, ">= 0.0.0", only: :dev, runtime: false}
    ]
  end
end