-
Notifications
You must be signed in to change notification settings - Fork 2
/
mix.exs
53 lines (47 loc) · 981 Bytes
/
mix.exs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
defmodule Talan.MixProject do
use Mix.Project
@version "0.2.0"
@github "https://github.com/preciz/talan"
def project do
[
app: :talan,
version: @version,
elixir: "~> 1.7",
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, "~> 0.3.3"},
{:ex_doc, "~> 0.34", 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: %{"GitHub" => @github}
]
end
end