Packages

Globals is a module that provides ETS backed global state storage with PubSub capabilities.

Current section

Files

Jump to
globals mix.exs
Raw

mix.exs

defmodule Globals.MixProject do
use Mix.Project
def project do
[
app: :globals,
version: "1.1.1",
elixir: "~> 1.16",
start_permanent: Mix.env() == :prod,
deps: deps(),
description:
"Globals is a module that provides ETS backed global state storage with PubSub capabilities.",
package: %{
licenses: ["MIT"],
links: %{"GitHub" => "https://github.com/diodechain/globals"}
}
]
end
# Run "mix help compile.app" to learn about applications.
def application do
[
extra_applications: [:logger],
mod: {Globals.Application, []}
]
end
# Run "mix help deps" to learn about dependencies.
defp deps do
[
{:debouncer, "~> 0.1"},
{:profiler, "~> 0.4"},
{:ex_doc, "~> 0.30", only: :dev, runtime: false}
# {:dep_from_hexpm, "~> 0.3.0"},
# {:dep_from_git, git: "https://github.com/elixir-lang/my_dep.git", tag: "0.1.0"}
]
end
end