From b5c66b94010cd8224d2e4a9b91a7d9c272165b58 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jos=C3=A9=20Valim?= Date: Thu, 9 Feb 2023 17:46:08 +0100 Subject: [PATCH] Depend on inets and ssl (#30) Elixir v1.15 will prune applications from the code path that are not listed as dependencies, so we need to explicitly depend on inets and ssl. --- mix.exs | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/mix.exs b/mix.exs index 69ae58b..0e696b7 100644 --- a/mix.exs +++ b/mix.exs @@ -24,17 +24,13 @@ defmodule DartSass.MixProject do source_ref: "v#{@version}", extras: ["CHANGELOG.md"] ], - xref: [ - exclude: [:httpc, :public_key] - ], aliases: [test: ["sass.install --if-missing", "test"]] ] end def application do [ - # inets/ssl may be used by Mix tasks but we should not impose them. - extra_applications: [:logger], + extra_applications: [:logger, :inets, :ssl], mod: {DartSass, []}, env: [default: []] ]