oauth.app 347 B

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