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.

54 lines
1.2 KiB

3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
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. Commands
  22. , Commands.EDT
  23. , Conf
  24. build-depends:
  25. base ^>=4.14.0.0
  26. , discord-haskell
  27. , cron
  28. , text
  29. , unliftio-core
  30. , containers
  31. , unordered-containers
  32. , iCalendar
  33. , bytestring
  34. , yaml
  35. , scientific
  36. , http-conduit
  37. , modern-uri
  38. , case-insensitive
  39. , time
  40. , regex-pcre
  41. , array
  42. , unliftio
  43. , mtl
  44. , control-event
  45. hs-source-dirs: app
  46. default-language: Haskell2010