defmodule EthereumJsonrpc.MixProject do use Mix.Project def project do [ aliases: aliases(Mix.env()), app: :ethereum_jsonrpc, build_path: "../../_build", config_path: "../../config/config.exs", deps: deps(), deps_path: "../../deps", dialyzer: [ plt_add_deps: :transitive, plt_add_apps: [:mix], ignore_warnings: "../../.dialyzer-ignore" ], elixir: "~> 1.6", elixirc_paths: elixirc_paths(Mix.env()), lockfile: "../../mix.lock", preferred_cli_env: [ coveralls: :test, "coveralls.detail": :test, "coveralls.post": :test, "coveralls.html": :test, dialyzer: :test ], start_permanent: Mix.env() == :prod, test_coverage: [tool: ExCoveralls], version: "0.1.0" ] end # Run "mix help compile.app" to learn about applications. def application do [ mod: {EthereumJSONRPC.Application, []}, extra_applications: [:logger] ] end defp aliases(env) do [ # to match behavior of `mix test` from project root, which needs to not start applications for `indexer` to # prevent its supervision tree from starting, which is undesirable in test test: "test --no-start" ] ++ env_aliases(env) end # Specifies which paths to compile per environment. defp elixirc_paths(:test), do: ["test/support" | elixirc_paths(:dev)] defp elixirc_paths(_), do: ["lib"] defp env_aliases(:dev), do: [] defp env_aliases(_env), do: [compile: "compile --warnings-as-errors"] # Run "mix help deps" to learn about dependencies. defp deps do [ # CACerts bundle for `EthereumJSONRPC.WebSocket.Client` {:certifi, "~> 2.3"}, # Style Checking {:credo, "0.9.2", only: [:dev, :test], runtime: false}, # Static Type Checking {:dialyxir, "~> 0.5", only: [:dev, :test], runtime: false}, # Code coverage {:excoveralls, "~> 0.8.1", only: [:test]}, # JSONRPC HTTP Post calls {:httpoison, "~> 1.0", override: true}, # Decode/Encode JSON for JSONRPC {:jason, "~> 1.0"}, # Mocking `EthereumJSONRPC.Transport` and `EthereumJSONRPC.HTTP` so we avoid hitting real chains for local testing {:mox, "~> 0.4", only: [:test]}, # Convert unix timestamps in JSONRPC to DateTimes {:timex, "~> 3.1.24"}, # Encode/decode function names and arguments {:ex_abi, "~> 0.1.16"}, # `EthereumJSONRPC.WebSocket` {:socket, "~> 0.3.13"}, # `:verify_fun` for `Socket.Web.connect` {:ssl_verify_fun, "~> 1.1"}, # `EthereumJSONRPC.WebSocket` {:websocket_client, "~> 1.3"}, # `EthereumJSONRPC.WebSocket` {:websockex, "~> 0.4.1"} ] end end