oauth.app 331 B

1234567891011121314151617181920
  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. inets
  19. ]}
  20. ]}.