Current section
Files
Jump to
Current section
Files
mix.exs
defmodule LiteStash.MixProject do
use Mix.Project
@version "0.0.1"
@source_url "https://github.com/mesotron-dev/litestash-ex"
def project do
[
app: :litestash,
version: @version,
elixir: "~> 1.19",
description:
"High-performance key-value store using SQLite static lock sharding. Native Elixir client for the litestash-engine",
start_permanent: Mix.env() == :prod,
package: package(),
deps: deps(),
docs: [
main: "readme",
source_url: @source_url,
source_ref: "v#{@version}",
extras: ["README.md"]
]
]
end
def application do
[
extra_applications: [:logger]
]
end
defp deps do
[
{:msgpax, "~> 2.4"},
{:jason, "~> 1.4"},
{:ex_doc, "~> 0.39", only: :dev, runtime: false}
]
end
defp package() do
[
name: "litestash",
files: ~w(lib priv mix.exs README.md LICENSE CHANGELOG.md),
maintainers: ["Mesotron"],
licenses: ["Apache-2.0"],
links: %{"GitHub" => "https://github.com/mesotron-dev/litestash-ex"}
]
end
end