Use SAX parser to process SVGs

This commit is contained in:
Max Veytsman
2022-08-31 10:37:29 -04:00
parent 11fcb4183e
commit 05ef2f9a8a
6 changed files with 157 additions and 11 deletions

View File

@ -4,7 +4,7 @@ defmodule HeroiconsElixir.MixProject do
def project do
[
app: :heroicons,
version: "0.3.2",
version: "0.4.0",
elixir: "~> 1.11",
start_permanent: Mix.env() == :prod,
deps: deps(),
@ -28,7 +28,8 @@ defmodule HeroiconsElixir.MixProject do
[
{:phoenix_html, "~> 2.14 or ~> 3.0"},
{:phoenix_live_view, ">= 0.16.0", optional: true},
{:ex_doc, "~> 0.23", only: :dev, runtime: false}
{:ex_doc, "~> 0.23", only: :dev, runtime: false},
{:saxy, "~> 1.4"}
]
end