funbot-ext-events.cabal 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. name: funbot-ext-events
  2. version: 0.3.0.0
  3. synopsis: Interact with FunBot's external events.
  4. description:
  5. This is a library providing types and tools for interacting with
  6. <https://notabug.org/fr33domlover/funbot FunBot>'s external events. The
  7. code was extracted from FunBot itself, so that independent programs can
  8. interact with it, e.g. by using its client API.
  9. Since the provided types change every time an external event type is added or
  10. modified, many of this library's releases are expected to break
  11. compatibility. In most cases you should either use a higher-level library
  12. such as <https://notabug.org/fr33domlover/funbot-client funbot-client>, or
  13. perhaps create one yourself.
  14. homepage: https://notabug.org/fr33domlover/funbot-ext-events
  15. bug-reports: https://notabug.org/fr33domlover/funbot-ext-events/issues
  16. license: PublicDomain
  17. license-file: COPYING
  18. author: fr33domlover
  19. maintainer: fr33domlover@riseup.net
  20. copyright: ♡ Copying is an act of love. Please copy, reuse and share.
  21. category: Network, Web
  22. build-type: Simple
  23. extra-source-files: AUTHORS ChangeLog COPYING INSTALL NEWS.md README.md
  24. cabal-version: >=1.10
  25. source-repository head
  26. type: git
  27. location: https://notabug.org/fr33domlover/funbot-ext-events.git
  28. library
  29. exposed-modules: FunBot.ExtEvents
  30. -- other-modules:
  31. -- other-extensions:
  32. build-depends: aeson >=0.7
  33. , base >=4.7 && <5
  34. , text >=1
  35. hs-source-dirs: src
  36. default-language: Haskell2010
  37. ghc-options: -Wall