forked from sasa1977/con_cache
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmix.exs
More file actions
39 lines (34 loc) · 925 Bytes
/
mix.exs
File metadata and controls
39 lines (34 loc) · 925 Bytes
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
Code.ensure_loaded?(Hex) and Hex.start
defmodule ConCache.Mixfile do
use Mix.Project
@version "0.5.1"
def project do
[
app: :con_cache,
version: @version,
elixir: "~> 1.0.0-rc1",
deps: deps,
package: [
contributors: ["Saša Jurić"],
licenses: ["MIT"],
links: %{"Github": "https://github.com/sasa1977/con_cache"}
],
description: "ETS based key-value storage with support for row-level isolated writes, TTL auto-purge, and modification callbacks.",
docs: [
readme: true,
main: "README",
source_url: "https://github.com/sasa1977/con_cache/",
source_ref: @version
]
]
end
def application do
[applications: [:logger, :exactor], mod: {ConCache.Application, []}]
end
defp deps do
[
{:exactor, "~> 0.7.0"},
{:ex_doc, github: "elixir-lang/ex_doc", only: :docs}
]
end
end