Page Menu
Home
Phorge
Search
Configure Global Search
Log In
Files
F140566
mix.exs
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Award Token
Flag For Later
Size
1 KB
Referenced Files
None
Subscribers
None
mix.exs
View Options
# SPDX-FileCopyrightText: 2017-2019 Pleroma Authors <https://pleroma.social/>
# SPDX-License-Identifier: LGPL-3.0-only
defmodule
HttpSignatures.MixProject
do
use
Mix.Project
def
project
do
[
app
:
:http_signatures
,
description
:
"Library for manipulating and validating HTTP signatures"
,
version
:
"0.1.1"
,
elixir
:
"~> 1.7"
,
elixirc_options
:
[
warnings_as_errors
:
true
],
elixirc_paths
:
elixirc_paths
(
Mix
.
env
()),
start_permanent
:
Mix
.
env
()
==
:prod
,
deps
:
deps
(),
package
:
package
()
]
end
# Run "mix help compile.app" to learn about applications.
def
application
do
[
extra_applications
:
[
:logger
,
:public_key
]
]
end
# Run "mix help deps" to learn about dependencies.
defp
deps
do
[
{
:credo
,
"~> 1.0"
,
only
:
[
:dev
,
:test
],
runtime
:
false
},
{
:ex_doc
,
"~> 0.19"
,
only
:
:dev
,
runtime
:
false
},
{
:dialyxir
,
"~> 1.1.0"
,
only
:
[
:dev
],
runtime
:
false
}
]
end
defp
package
do
[
licenses
:
[
"LGPL-3.0-only"
],
links
:
%{
"GitLab"
=>
"https://git.pleroma.social/pleroma/elixir-libraries/http_signatures"
}
]
end
defp
elixirc_paths
(
:test
),
do
:
[
"lib"
,
"test/support"
]
defp
elixirc_paths
(
_
),
do
:
[
"lib"
]
end
File Metadata
Details
Attached
Mime Type
text/x-ruby
Expires
Mon, Jan 20, 6:28 AM (1 d, 14 h)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
54871
Default Alt Text
mix.exs (1 KB)
Attached To
Mode
R18 http_signatures
Attached
Detach File
Event Timeline
Log In to Comment