Add `dev` dependency to cowboy in the `ethereum_jsonrpc` app

* This dependency was only being set to test and every time we tried to open an iex an error was raised.
pull/1096/head
Amanda Sposito 6 years ago
parent 61cde269ba
commit 98024f1ffc
  1. 2
      apps/ethereum_jsonrpc/mix.exs

@ -61,7 +61,7 @@ defmodule EthereumJsonrpc.MixProject do
# CACerts bundle for `EthereumJSONRPC.WebSocket.WebSocketClient` # CACerts bundle for `EthereumJSONRPC.WebSocket.WebSocketClient`
{:certifi, "~> 2.3"}, {:certifi, "~> 2.3"},
# WebSocket-server for testing `EthereumJSONRPC.WebSocket.WebSocketClient`. # WebSocket-server for testing `EthereumJSONRPC.WebSocket.WebSocketClient`.
{:cowboy, "~> 1.1", only: :test}, {:cowboy, "~> 1.1", only: [:dev, :test]},
# Style Checking # Style Checking
{:credo, "0.10.2", only: [:dev, :test], runtime: false}, {:credo, "0.10.2", only: [:dev, :test], runtime: false},
# Static Type Checking # Static Type Checking

Loading…
Cancel
Save