summaryrefslogtreecommitdiff
path: root/apps/oauth/src/oauth.app.src
blob: 6357b9b0f1ac7727cd94558506fdf82a4daa7594 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{application, oauth, [
  {description, "Erlang OAuth implementation"},
  {vsn, "dev"},
  {modules, [
    oauth,
    oauth_hmac_sha1,
    oauth_http,
    oauth_plaintext,
    oauth_rsa_sha1,
    oauth_unix,
    oauth_uri
  ]},
  {registered, []},
  {applications, [
    kernel,
    stdlib,
    crypto,
    inets
  ]}
]}.