Page MenuHomePhorge

No OneTemporary

Size
1 KB
Referenced Files
None
Subscribers
None
diff --git a/mix.exs b/mix.exs
index 7a66e62..8062e18 100644
--- a/mix.exs
+++ b/mix.exs
@@ -1,33 +1,49 @@
defmodule FastSanitize.MixProject do
use Mix.Project
def project do
[
app: :fast_sanitize,
version: "0.1.0",
elixir: "~> 1.7",
start_permanent: Mix.env() == :prod,
- deps: deps()
+ deps: deps(),
+ package: package(),
+ description: """
+ A module that provides performant and memory-efficient HTML sanitization.
+ Largely drop-in compatible with HtmlSanitizeEx.
+ """
+ ]
+ end
+
+ def package do
+ [
+ maintainers: ["Ariadne Conill"],
+ licenses: ["MIT"],
+ links: %{
+ "GitLab" => "https://git.pleroma.social/pleroma/fast_sanitize",
+ "Issues" => "https://git.pleroma.social/pleroma/fast_sanitize/issues"
+ }
]
end
# Run "mix help compile.app" to learn about applications.
def application do
[
extra_applications: [:logger]
]
end
# Run "mix help deps" to learn about dependencies.
defp deps do
[
{:plug, "~> 1.8"},
{:fast_html, "~> 0.9"},
{:credo, "~> 1.0.0", only: [:dev, :test], runtime: false},
{:benchee, "~> 1.0", only: :dev},
{:html_sanitize_ex, "~> 1.3.0-rc3", only: :dev},
{:ex_doc, "~> 0.19", only: :dev, runtime: false},
{:dialyxir, "~> 1.0.0-rc.5", only: [:dev], runtime: false}
]
end
end

File Metadata

Mime Type
text/x-diff
Expires
Wed, Nov 27, 8:22 PM (1 d, 19 h)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
40737
Default Alt Text
(1 KB)

Event Timeline