-
Notifications
You must be signed in to change notification settings - Fork 0
/
mix.exs
37 lines (34 loc) · 1.04 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
defmodule QuillEx.MixProject do
use Mix.Project
def project do
[
app: :quillex,
version: "0.1.2",
elixir: "~> 1.12",
build_embedded: true,
start_permanent: Mix.env() == :prod,
deps: deps()
]
end
# Run "mix help compile.app" to learn about applications.
def application do
[
mod: {QuillEx.App, []},
extra_applications: [:event_bus]
]
end
# Run "mix help deps" to learn about dependencies.
defp deps do
[
{:scenic, git: "https://github.com/JediLuke/scenic", branch: "update_deps_instructions_for_ubuntu_24", override: true},
{:scenic_driver_local, git: "https://github.com/JediLuke/scenic_driver_local", branch: "no_line_wrap"},
# {:scenic_widget_contrib,
# git: "https://github.com/JediLuke/scenic-widget-contrib", branch: "text_pad_wip"},
{:scenic_widget_contrib, path: "../scenic-widget-contrib"},
{:elixir_uuid, "~> 1.2"},
{:font_metrics, "~> 0.5"},
{:event_bus, "~> 1.7.0"},
{:struct_access, "~> 1.1.2"}
]
end
end