defmodule Libp2p.MixProject do use Mix.Project def project do [ app: :libp2p, version: "0.1.1", elixir: "~> 1.8", description: description(), package: package(), start_permanent: Mix.env() == :prod, source_url: "https://github.com/timjp87/elixir-libp2p", deps: deps() ] end defp description() do "This package provides bindings for the go-libp2p-daemon, which needs to be installed and launched seperately." end defp package() do [ licenses: ["MIT"], links: %{"GitHub" => "https://github.com/timjp87/elixir-libp2p"} ] end # Run "mix help compile.app" to learn about applications. def application do [ extra_applications: [:logger] ] end # Run "mix help deps" to learn about dependencies. defp deps do [ {:protobuf, "~> 0.5.3"}, {:poolboy, "~> 1.5"}, {:basefiftyeight, "~> 0.1.0"}, {:multiaddr, "~> 1.1"}, {:ex_doc, ">= 0.0.0", only: :dev} ] end end