From 9944d2a92f51d98e33ed23e99f88afe941a71a55 Mon Sep 17 00:00:00 2001 From: hswick Date: Thu, 3 May 2018 23:08:23 -0500 Subject: [PATCH] Set version to 0.1.0, and got rid of dependencies --- lib/exw3.ex | 2 +- mix.exs | 8 +++----- 2 files changed, 4 insertions(+), 6 deletions(-) diff --git a/lib/exw3.ex b/lib/exw3.ex index d8a284f..d9b45a4 100644 --- a/lib/exw3.ex +++ b/lib/exw3.ex @@ -4,7 +4,7 @@ defmodule ExW3 do bytes |> Base.encode16(case: :lower) |> String.replace_trailing("0", "") - |> Hexate.decode + |> Base.decode16!(case: :lower) end def accounts do diff --git a/mix.exs b/mix.exs index 0c6c1a1..04076bd 100644 --- a/mix.exs +++ b/mix.exs @@ -3,8 +3,8 @@ defmodule ExW3.MixProject do def project do [app: :exw3, - version: "0.0.2", - elixir: "~> 1.1-dev", + version: "0.1.0", + elixir: "~> 1.6.4", build_embedded: Mix.env == :prod, start_permanent: Mix.env == :prod, deps: deps(), @@ -36,9 +36,7 @@ defmodule ExW3.MixProject do {:ex_doc, ">= 0.0.0", only: :dev}, {:ethereumex, "~> 0.3.2"}, {:abi, "~> 0.1.8"}, - {:poison, "~> 3.1"}, - {:inflex, "~> 1.10.0" }, - {:hexate, ">= 0.6.0"} + {:poison, "~> 3.1"} ] end