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.

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