Packages
game_server_core
1.0.996
1.0.1006
1.0.1005
1.0.1004
1.0.1003
1.0.1001
1.0.999
1.0.998
1.0.997
1.0.996
1.0.995
1.0.994
1.0.993
1.0.992
1.0.991
1.0.990
1.0.989
1.0.988
1.0.987
1.0.986
1.0.985
1.0.984
1.0.983
1.0.982
1.0.981
1.0.980
1.0.979
1.0.978
1.0.977
1.0.976
1.0.975
1.0.974
1.0.973
1.0.972
1.0.971
1.0.970
1.0.969
1.0.968
1.0.967
1.0.966
1.0.965
1.0.964
1.0.963
1.0.962
1.0.961
1.0.959
1.0.958
1.0.956
1.0.951
1.0.950
1.0.943
1.0.942
1.0.941
1.0.940
1.0.938
1.0.936
1.0.935
1.0.931
1.0.929
1.0.5
Core functionality for Gamend GameServer, including user management, authentication, friends, matchmaking, and more.
Current section
Files
Jump to
Current section
Files
game_server_core
mix.exs
mix.exs
defmodule GameServerCore.MixProject do
use Mix.Project
@version "1.0.996"
@source_url "https://github.com/appsinacup/game_server"
def project do
[
app: :game_server_core,
version: System.get_env("APP_VERSION") || @version,
elixir: "~> 1.19",
start_permanent: Mix.env() == :prod,
deps: deps(),
description: description(),
package: package(),
docs: docs()
]
end
def application do
[
extra_applications: [:logger]
]
end
defp deps do
[
{:bcrypt_elixir, "~> 3.0"},
{:nebulex, "~> 3.0.0-rc.2"},
{:nebulex_local, "~> 3.0.0-rc.2"},
{:nebulex_distributed, "~> 3.0.0-rc.2"},
{:nebulex_redis_adapter, "~> 3.0.0-rc.2"},
{:decorator, "~> 1.4"},
{:phoenix, "~> 1.8.3"},
{:phoenix_ecto, "~> 4.5"},
{:ecto_sql, "~> 3.13.3"},
{:ecto_sqlite3, "~> 0.12"},
{:postgrex, ">= 0.0.0"},
{:swoosh, "~> 1.20"},
{:gen_smtp, "~> 1.0"},
{:req, "~> 0.5"},
{:telemetry_metrics, "~> 1.0"},
{:telemetry_poller, "~> 1.0"},
{:gettext, "~> 1.0"},
{:jason, "~> 1.2"},
{:dns_cluster, "~> 0.2.0"},
{:ueberauth, "~> 0.10"},
{:ueberauth_discord, "~> 0.7"},
{:ueberauth_apple, "~> 0.2"},
{:ueberauth_google, "~> 0.12"},
{:ueberauth_facebook, "~> 0.10"},
{:ueberauth_steam_strategy, "~> 0.1"},
{:jose, "~> 1.11"},
{:guardian, "~> 2.3"},
{:quantum, "~> 3.5"},
{:corsica, "~> 2.0"},
{:earmark, "~> 1.4"},
{:ex_doc, "~> 0.40", only: :dev, runtime: false}
]
end
defp description do
"""
Core functionality for Gamend GameServer, including user management, authentication, friends, matchmaking, and more.
"""
end
defp package do
[
name: "game_server_core",
licenses: ["MIT"],
links: %{
"GitHub" => @source_url,
"Changelog" => "#{@source_url}/blob/main/CHANGELOG.md"
},
files: ~w(lib priv/repo .formatter.exs mix.exs README.md LICENSE)
]
end
defp docs do
[
main: "readme",
source_ref: "v#{@version}",
extras: ["README.md"]
]
end
end