Packages
Distributed Dynamic R-tree (DDRT) implementation for Elixir. It's mainly a R-tree. Why dynamic? Because it's optimized to do fast updates at the tree leaves spatial index. Why distributed? Well.. you can run the DDRT on different nodes and they will have the same r-tree data.
Current section
Files
Jump to
Current section
Files
mix.exs
defmodule DynamicRtree.MixProject do
use Mix.Project
def project do
[
app: :ddrt,
version: "0.2.1",
elixir: "~> 1.9",
start_permanent: Mix.env() == :prod,
deps: deps(),
source_url: "https://github.com/windfish-studio/ddrt",
description: description(),
package: package(),
docs: [
main: "readme",
extras: ["README.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
[
{:uuid, "~> 1.1"},
{:jason, "~> 1.0"},
{:benchee, "~> 1.0", only: :dev},
{:earmark, "~> 1.2", only: :dev},
{:ex_doc, "~> 0.19", only: :dev},
{:dialyxir, "~> 0.4", only: :dev},
{:merkle_map, "~> 0.2.0"},
{:delta_crdt, "~> 0.5.0"}
]
end
defp package() do
[
licenses: ["GPL 3.0"],
links: %{"GitHub" => "https://github.com/windfish-studio/ddrt"}
]
end
def description do
"Distributed Dynamic R-tree (DDRT) implementation for Elixir.
It's mainly a R-tree.
Why dynamic? Because it's optimized to do fast updates at the tree leaves spatial index.
Why distributed? Well.. you can run the DDRT on different nodes and they will have the same r-tree data.
"
end
end