Skip to content

Commit

Permalink
Depend on inets and ssl (CargoSense#30)
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
josevalim committed Feb 9, 2023
1 parent 1092f60 commit b5c66b9
Showing 1 changed file with 1 addition and 5 deletions.
6 changes: 1 addition & 5 deletions mix.exs
Expand Up @@ -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: []]
]
Expand Down

0 comments on commit b5c66b9

Please sign in to comment.