You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

38 lines
882 B

3 years ago
  1. cabal-version: 2.4
  2. name: botiut
  3. version: 0.1.0.0
  4. -- A short (one-line) description of the package.
  5. synopsis: A discord bot
  6. -- A longer description of the package.
  7. description: A discord bot
  8. -- A URL where users can report bugs.
  9. -- bug-reports:
  10. -- The license under which the package is released.
  11. license: BSD-3-Clause
  12. author: Antoine "Annwan" COMBET
  13. maintainer: annwan@outlook.fr
  14. -- category:
  15. extra-source-files:
  16. README.org
  17. executable botiut
  18. main-is: Main.hs
  19. -- Modules included in this executable, other than Main.
  20. -- other-modules:
  21. -- LANGUAGE extensions used by modules in this package.
  22. -- other-extensions:
  23. build-depends:
  24. base ^>=4.15.0.0
  25. , discord-haskell
  26. , control-event
  27. , text
  28. , unliftio
  29. hs-source-dirs: app
  30. default-language: Haskell2010