Current section
Files
Jump to
Current section
Files
mix.exs
defmodule Murmur.Mixfile do
use Mix.Project
@description """
Murmur is a pure Elixir implementation of the non-cryptographic hash Murmur3.
It aims to implement the x86_32bit, x86_128bit and x64_128bit variants.
"""
@github "https://github.com/preciz/murmur"
@version "2.0.2"
def project() do
[
app: :murmur,
name: "Murmur",
source_url: @github,
homepage_url: @github,
version: @version,
elixir: "~> 1.13",
build_embedded: Mix.env() == :prod,
start_permanent: Mix.env() == :prod,
description: @description,
package: package(),
deps: deps(),
docs: docs()
]
end
def application() do
[]
end
defp docs() do
[
main: "readme",
logo: nil,
source_ref: "v#{@version}",
extras: ["README.md", "CHANGELOG.md"]
]
end
defp package() do
[
files: ["lib", "mix.exs", "README.md", "CHANGELOG.md", "LICENSE"],
maintainers: ["Barna Kovacs", "Gonçalo Cabrita"],
licenses: ["MIT"],
links: %{
"GitHub" => @github,
"Changelog" => "#{@github}/blob/main/CHANGELOG.md"
}
]
end
defp deps() do
[
{:ex_doc, "~> 0.40", only: [:dev, :docs], runtime: false}
]
end
end