Packages
charon
3.2.0
4.3.0
4.3.0-beta1
4.2.0
4.2.0-beta3
4.2.0-beta2
4.2.0-beta1
4.1.0
4.0.1
4.0.0
4.0.0-beta3
4.0.0-beta2
4.0.0-beta1
3.4.1
3.4.0
3.3.0
3.2.0
3.1.1
3.1.0
3.0.3
3.0.2
3.0.1
3.0.0
3.0.0-beta1
2.8.0
2.8.0-beta1
2.7.3
2.7.2
2.7.1
2.7.0
2.6.1
2.6.0
2.5.0
2.4.0
2.3.0
2.2.0
2.2.0-beta
2.1.3
2.1.2
2.1.2-beta
2.1.1
2.1.0
2.0.0
1.3.4
1.3.3
1.3.2-beta
1.3.1-beta
1.3.0-beta
1.2.0-beta
1.1.0-beta
1.0.1-beta
1.0.0-beta1
0.0.4-alpha
0.0.3-alpha
0.0.2-alpha
0.0.1-alpha
Authentication & sessions for API's.
Current section
Files
Jump to
Current section
Files
mix.exs
defmodule Charon.MixProject do
use Mix.Project
def project do
[
app: :charon,
version: "3.2.0",
elixir: "~> 1.12",
start_permanent: Mix.env() == :prod,
deps: deps(),
elixirc_paths: elixirc_paths(Mix.env()),
description: """
Authentication & sessions for API's.
""",
package: [
licenses: ["Apache-2.0"],
links: %{github: "https://github.com/weareyipyip/charon"},
source_url: "https://github.com/weareyipyip/charon"
],
source_url: "https://github.com/weareyipyip/charon",
name: "Charon",
docs: [
source_ref: "v3.2.0",
extras: ~w(./README.md ./LICENSE.md ./UPGRADE_GUIDE.md ./CHANGELOG.md),
main: "readme",
skip_undefined_reference_warnings_on: ~w(./UPGRADE_GUIDE.md ./CHANGELOG.md)
]
]
end
# Run "mix help compile.app" to learn about applications.
def application do
[
extra_applications: [:logger]
]
end
# Run "mix help deps" to learn about dependencies.
defp deps do
[
{:blake3, "~> 1.0", optional: true},
{:ex_doc, "~> 0.21", only: [:dev, :test], runtime: false},
{:jose, "~> 1.11", only: [:test], runtime: false},
{:mix_test_watch, "~> 1.0", only: [:dev], runtime: false},
{:mock, "~> 0.3", only: [:test]},
{:plug, "~> 1.11"},
{:poolboy, "~> 1.5", optional: true},
{:redix, "~> 1.1", optional: true}
]
end
defp elixirc_paths(:test), do: ["lib", "test/support"]
defp elixirc_paths(_), do: ["lib"]
end