Packages
spikard
0.16.1
0.17.0-rc.11
0.17.0-rc.10
0.17.0-rc.9
0.17.0-rc.8
0.17.0-rc.7
0.17.0-rc.6
0.17.0-rc.5
0.17.0-rc.4
0.17.0-rc.3
0.17.0-rc.1
0.16.1
0.16.0
0.16.0-rc.4
0.16.0-rc.3
0.15.6-rc.21
0.15.6-rc.20
0.15.6-rc.19
0.15.6-rc.18
0.15.6-rc.17
0.15.6-rc.16
0.15.6-rc.15
0.15.6-rc.14
0.15.6-rc.9
0.15.6-rc.7
0.15.6-rc.6
0.15.6-rc.4
0.15.4
0.15.3
0.13.0
0.12.0
0.11.0
Codegen-first polyglot web toolkit with a Rust core and bindings for 14 languages
Current section
Files
Jump to
Current section
Files
mix.exs
defmodule Spikard.MixProject do
use Mix.Project
def project do
[
app: :spikard,
version: "0.16.1",
elixir: "~> 1.14",
rustler_crates: [
spikard_nif: [
mode: :release,
targets: [
"aarch64-apple-darwin",
"aarch64-unknown-linux-gnu",
"x86_64-unknown-linux-gnu",
"x86_64-pc-windows-msvc"
]
]
],
description: "Rust-centric multi-language HTTP framework with polyglot bindings",
package: package(),
deps: deps()
]
end
defp package do
[
licenses: ["MIT"],
links: %{"GitHub" => "https://github.com/Goldziher/spikard"},
files: ~w(lib .formatter.exs mix.exs README* checksum-*.exs native/spikard_nif/Cargo.toml native/spikard_nif/Cargo.lock)
]
end
defp deps do
[
{:jason, "~> 1.4"},
{:rustler, "~> 0.37", runtime: false},
{:rustler_precompiled, "~> 0.9"},
{:credo, "~> 1.7", only: [:dev, :test], runtime: false},
{:ex_doc, "~> 0.40", only: :dev, runtime: false}
]
end
end