-
Notifications
You must be signed in to change notification settings - Fork 34
/
Copy pathmix.exs
69 lines (62 loc) · 1.6 KB
/
mix.exs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
defmodule Wasmex.MixProject do
use Mix.Project
@version "0.9.3"
def project do
[
app: :wasmex,
version: @version,
elixir: "~> 1.12",
start_permanent: Mix.env() == :prod,
elixirc_paths: elixirc_paths(Mix.env()),
name: "wasmex",
description: description(),
package: package(),
deps: deps()
]
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
[
{:rustler_precompiled, "~> 0.8"},
{:rustler, "~> 0.35.1"},
{:ex_doc, "~> 0.36.1", only: [:dev, :test]},
{:credo, "~> 1.7.11", only: [:dev, :test], runtime: false}
]
end
defp description() do
"Wasmex is an Elixir library for executing WebAssembly binaries"
end
# Specifies which paths to compile per environment.
defp elixirc_paths(:test), do: ["lib", "test/component_fixtures"]
defp elixirc_paths(_), do: ["lib"]
defp package() do
[
# These are the default files included in the package
files: ~w[
lib
native/wasmex/src
native/wasmex/Cargo.*
native/wasmex/README.md
native/wasmex/.cargo
checksum-Elixir.Wasmex.Native.exs
.formatter.exs
mix.exs
README.md
LICENSE.md
CHANGELOG.md
],
licenses: ["MIT"],
links: %{
"GitHub" => "https://github.com/tessi/wasmex",
"Docs" => "https://hexdocs.pm/wasmex"
},
source_url: "https://github.com/tessi/wasmex"
]
end
end