Packages
This is implementation of transport agnostic JSONRPC 2.0 protocol. There is no transport level. It consists only of specification entities
Current section
Files
Jump to
Current section
Files
jsonrpc2_spec
mix.exs
mix.exs
defmodule JSONRPC2.Spec.MixProject do
use Mix.Project
def project do
[
app: :jsonrpc2_spec,
version: "0.1.1",
elixir: "~> 1.18",
start_permanent: Mix.env() == :prod,
description: description(),
package: package(),
deps: deps()
]
end
# Run "mix help compile.app" to learn about applications.
def application do
[
extra_applications: [:logger]
]
end
defp package do
[
maintainers: ["undr@yandex.ru"],
licenses: ["MIT"],
links: %{"GitHub" => "https://github.com/undr/jsonrpc2_spec"}
]
end
defp description do
"This is implementation of transport agnostic JSONRPC 2.0 protocol. " <>
"There is no transport level. It consists only of specification entities"
end
# Run "mix help deps" to learn about dependencies.
defp deps do
[
{:telemetry, "~> 0.4 or ~> 1.0"},
{:ex_doc, ">= 0.0.0", only: :dev, runtime: false}
]
end
end