Current section
Files
Jump to
Current section
Files
mix.exs
defmodule Talan.MixProject do
use Mix.Project
@version "1.0.0"
@github "https://github.com/preciz/talan"
def project do
[
app: :talan,
version: @version,
elixir: "~> 1.14",
start_permanent: Mix.env() == :prod,
deps: deps(),
docs: docs(),
package: package(),
homepage_url: @github,
description: """
Probabilistic data structures powered by atomics.
Bloom filter, Counting bloom filter, Linear counter (cardinality)
"""
]
end
def application do
[
extra_applications: []
]
end
defp deps do
[
{:murmur, "~> 2.0"},
{:abit, "~> 1.0.0"},
{:stream_data, "~> 1.4", only: :test},
{:credo, "~> 1.7.19", only: :dev, runtime: false},
{:ex_doc, "~> 0.40", only: :dev, runtime: false}
]
end
defp docs do
[
main: "Talan",
source_ref: "v#{@version}",
source_url: @github
]
end
defp package do
[
maintainers: ["Barna Kovacs"],
licenses: ["MIT"],
links: %{
"Changelog" => "#{@github}/blob/master/CHANGELOG.md",
"GitHub" => @github
}
]
end
end