aboutsummaryrefslogtreecommitdiffstats
path: root/lib/ftp/src/ftp.app.src
blob: a50d4936b84559605b1db9d631e5aa357a35105e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{application, ftp,
 [{description, "FTP client"},
  {vsn, "1.0.0"},
  {registered, []},
  {mod, { ftp_app, []}},
  {applications,
   [kernel,
    stdlib
   ]},
  {env,[]},
  {modules, [
             ftp,
             ftp_app,
             ftp_progress,
             ftp_response,
             ftp_sup
            ]},
  {runtime_dependencies, ["erts-7.0","stdlib-3.5","kernel-6.0"]}
 ]}.