summaryrefslogtreecommitdiff
path: root/mix.exs
diff options
context:
space:
mode:
authorBen Busby <contact@benbusby.com>2022-02-14 11:21:32 -0700
committerBen Busby <contact@benbusby.com>2022-02-14 11:21:32 -0700
commit5235f5a3bf620a787d0d2ee0021336c893ffa013 (patch)
treef8ada4659f2b650c2e56abbaa31ea4eaf79c30fb /mix.exs
parent51aba2ad789bf5efc340ff686dcfee7aeb6fd873 (diff)
downloadfarside-5235f5a3bf620a787d0d2ee0021336c893ffa013.tar.gz
Replace `poison` dependency w/ `jason`
The dependency took a long time to compile, and was causing problems for a user who was attempting to build the project. Since it wasn't a strictly necessary dependency, and `jason` was already included in the project, all instances of `poison` have been replaced with `jason`. The only additional code that this introduced was converting from generic maps returned by `Jason.decode` into Service structs.
Diffstat (limited to 'mix.exs')
-rw-r--r--mix.exs1
1 files changed, 0 insertions, 1 deletions
diff --git a/mix.exs b/mix.exs
index 229987e..80cc121 100644
--- a/mix.exs
+++ b/mix.exs
@@ -26,7 +26,6 @@ defmodule Farside.MixProject do
{:jason, "~> 1.1"},
{:plug_attack, "~> 0.4.2"},
{:plug_cowboy, "~> 2.0"},
- {:poison, "~> 5.0"},
{:quantum, "~> 3.0"},
{:redix, "~> 1.1"}
]