From 9b0a6fd34470a14b784cc3b1413916a47aa174ce Mon Sep 17 00:00:00 2001 From: Luke Ledet Date: Fri, 23 May 2025 17:17:32 -0500 Subject: [PATCH] Allow upgraded castore This is holding back castore to 0.1.22 in our app, I thought others might have the same problem. This solution is used by a few other libraries like mint, tesla, and rustler_precompiled while phoenix just sets it to `>= 0.0.0` --- mix.exs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mix.exs b/mix.exs index 9273ba1..843a3c2 100644 --- a/mix.exs +++ b/mix.exs @@ -32,7 +32,7 @@ defmodule Vault.MixProject do # http clients {:ibrowse, "~> 4.4.0", optional: true}, {:hackney, "~> 1.6", optional: true}, - {:castore, "~> 0.1", optional: true}, + {:castore, "~> 0.1.0 or ~> 1.0", optional: true}, {:mint, "~> 1.0", optional: true}, {:tesla, "~> 1.3", optional: true},