-
-
Notifications
You must be signed in to change notification settings - Fork 443
Expand file tree
/
Copy pathhackney.app.src
More file actions
60 lines (58 loc) · 1.36 KB
/
hackney.app.src
File metadata and controls
60 lines (58 loc) · 1.36 KB
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
%% -*- tab-width: 4;erlang-indent-level: 4;indent-tabs-mode: nil -*-
%% ex: ft=erlang ts=4 sw=4 et
{application, hackney,
[
{description, "Simple HTTP client with HTTP/1.1, HTTP/2, and HTTP/3 support"},
{vsn, "2.0.0-beta.1"},
{registered, [hackney_pool]},
{applications, [kernel,
stdlib,
crypto,
asn1,
public_key,
ssl,
idna,
mimerl,
certifi,
ssl_verify_fun,
metrics,
unicode_util_compat]},
{included_applications, []},
{mod, { hackney_app, []}},
{env, [{timeout, 150000},
{max_connections, 50},
{restart, permanent},
{shutdown, 10000},
{maxr, 10},
{maxt, 1},
{default_protocols, [http2, http1]}]},
{licenses, ["Apache-2.0"]},
{links, [
{"GitHub", "https://github.com/benoitc/hackney"},
{"Changelog", "https://github.com/benoitc/hackney/blob/master/NEWS.md"}
]},
{files, [
%% Source code
"src",
"include",
%% C source and vendored dependencies (QUIC NIF)
"c_src",
%% Build scripts
"do_cmake.sh",
"do_quic.sh",
%% Configuration
"rebar.config",
"rebar.lock",
%% Documentation
"README.md",
"NEWS.md",
"GETTING_STARTED.md",
"CONTRIBUTING.md",
"guides",
%% Legal
"LICENSE",
"NOTICE",
"MAINTAINERS"
]}
]
}.