oauth.app 347 B

123456789101112131415161718192021
  1. {application, oauth, [
  2. {description, "An Erlang OAuth 1.0 implementation"},
  3. {vsn, "1.0.2"},
  4. {modules, [
  5. oauth,
  6. oauth_client,
  7. oauth_hmac_sha1,
  8. oauth_http,
  9. oauth_plaintext,
  10. oauth_rsa_sha1,
  11. oauth_uri
  12. ]},
  13. {registered, []},
  14. {applications, [
  15. kernel,
  16. stdlib,
  17. crypto,
  18. public_key,
  19. inets
  20. ]}
  21. ]}.