Packages
ferricstore
0.11.12
0.11.12
0.11.11
0.11.10
0.11.9
0.11.8
0.11.7
0.11.6
0.11.5
0.11.4
0.11.3
0.11.2
0.11.1
0.11.0
0.10.3
0.10.2
0.10.1
0.10.0
0.9.1
0.9.0
0.8.0
0.7.5
0.7.4
0.7.3
0.7.2
0.7.1
0.7.0
0.6.0
0.5.7
0.5.6
0.5.5
0.5.4
0.5.3
0.5.2
0.5.1
0.5.0
0.4.3
0.4.2
0.4.1
0.4.0
0.3.7
0.3.6
0.3.5
0.3.4
0.3.3
0.3.2
0.3.1
0.2.0
0.1.0
FerricFlow durable workflows and queues with native-protocol storage, Raft durability, and Bitcask persistence.
Current section
Files
Jump to
Current section
Files
ferricstore
mix.exs
mix.exs
defmodule Ferricstore.MixProject do
use Mix.Project
@version "0.11.12"
def project do
[
app: :ferricstore,
version: @version,
build_path: "../../_build",
config_path: "../../config/config.exs",
deps_path: "../../deps",
lockfile: "../../mix.lock",
elixir: "~> 1.19",
elixirc_paths: elixirc_paths(Mix.env()),
start_permanent: Mix.env() == :prod,
deps: deps(),
package: package(),
docs: docs()
]
end
defp elixirc_paths(:test), do: ["lib", "test/support"]
defp elixirc_paths(_), do: ["lib"]
def application do
[
extra_applications: [:logger, :ssl, :public_key],
mod: {Ferricstore.Application, []}
]
end
defp docs do
[
main: "getting-started",
extras: [
"../../guides/getting-started.md",
"../../guides/kv-store.md",
"../../guides/embedded-mode.md",
"../../guides/http-api.md",
"../../guides/flow-elixir-sdk.md",
"../../guides/commands.md",
"../../guides/redis-migration.md",
"../../guides/configuration.md",
"../../guides/architecture.md",
"../../guides/deployment.md",
"../../guides/security.md",
"../../guides/best-practices.md",
"../../docs/flow-vs-temporal-usage.md",
"../../docs/benchmarks.md",
"../../docs/native-protocol.md",
"../../docs/http/api.md",
"../../docs/http/architecture.md",
"../../docs/http/testing-and-benchmarks.md",
"../../docs/flow-query.md",
"../../docs/flow-production-readiness.md",
"../../docs/aws-fargate-single-task.md",
"../../docs/aws-fargate-cluster.md",
"../../docs/flow-retry-policy.md",
"../../docs/testing.md"
],
groups_for_extras: [
Guides: Path.wildcard("../../guides/*.md"),
References: Path.wildcard("../../docs/**/*.md")
],
source_url: "https://github.com/ferricstore/ferricstore",
homepage_url: "https://github.com/ferricstore/ferricstore"
]
end
defp package do
[
description:
"FerricFlow durable workflows and queues with native-protocol storage, Raft durability, and Bitcask persistence.",
files: [
"lib",
"priv/flow_query/index-catalog.json",
"native/ferricstore_bitcask/.cargo",
"native/ferricstore_bitcask/src",
"native/ferricstore_bitcask/Cargo*",
"native/ferricstore_wal_nif/.cargo",
"native/ferricstore_wal_nif/src",
"native/ferricstore_wal_nif/Cargo*",
"checksum-*.exs",
"mix.exs"
],
licenses: ["Apache-2.0"],
links: %{
"GitHub" => "https://github.com/ferricstore/ferricstore"
}
]
end
defp deps do
[
{:rustler_precompiled, "~> 0.8"},
{:rustler, "~> 0.37", optional: true},
{:wa_raft, "~> 0.1", hex: :ferricstore_waraft},
{:libcluster, "3.3.3"},
{:libcluster_consul, "1.3.0", optional: true},
{:libcluster_etcd, "1.1.2", optional: true},
{:telemetry, "~> 1.4"},
{:jason, "~> 1.4"},
{:tz, "~> 0.28"},
{:plug, "~> 1.20", optional: true},
{:ex_doc, "~> 0.35", only: :dev, runtime: false},
{:credo, "~> 1.7", only: [:dev, :test], runtime: false},
{:arch_test, "~> 0.3.1", only: [:dev, :test], runtime: false}
]
end
end