persistent-mysql.cabal 2.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182
  1. name: persistent-mysql
  2. version: 2.10.0
  3. license: MIT
  4. license-file: LICENSE
  5. author: Felipe Lessa <felipe.lessa@gmail.com>, Michael Snoyman
  6. maintainer: Felipe Lessa <felipe.lessa@gmail.com>
  7. synopsis: Backend for the persistent library using MySQL database server.
  8. category: Database, Yesod
  9. stability: Stable
  10. cabal-version: >= 1.10
  11. build-type: Simple
  12. homepage: http://www.yesodweb.com/book/persistent
  13. bug-reports: https://github.com/yesodweb/persistent/issues
  14. description:
  15. This package contains a backend for persistent using the
  16. MySQL database server. Internally it uses the @mysql-simple@
  17. and @mysql@ packages in order to access the database.
  18. .
  19. This package supports only MySQL 5.1 and above. However, it
  20. has been tested only on MySQL 5.5.
  21. Only the InnoDB storage engine is officially supported.
  22. .
  23. Known problems:
  24. .
  25. * This package does not support statements inside other
  26. statements.
  27. extra-source-files: ChangeLog.md
  28. library
  29. build-depends: base >= 4.9 && < 5
  30. , persistent >= 2.10.0 && < 3
  31. , aeson >= 1.0
  32. , blaze-builder
  33. , bytestring >= 0.10.8
  34. , conduit >= 1.2.12
  35. , containers >= 0.5
  36. , monad-logger
  37. , mysql >= 0.1.4 && < 0.2
  38. , mysql-simple >= 0.4.4 && < 0.5
  39. , resourcet >= 1.1
  40. , resource-pool
  41. , text >= 1.2
  42. , transformers >= 0.5
  43. , unliftio-core
  44. exposed-modules: Database.Persist.MySQL
  45. ghc-options: -Wall
  46. default-language: Haskell2010
  47. source-repository head
  48. type: git
  49. location: git://github.com/yesodweb/persistent.git
  50. test-suite test
  51. type: exitcode-stdio-1.0
  52. main-is: main.hs
  53. hs-source-dirs: test
  54. other-modules: MyInit
  55. InsertDuplicateUpdate
  56. ghc-options: -Wall
  57. build-depends: base >= 4.9 && < 5
  58. , persistent
  59. , persistent-mysql
  60. , persistent-qq
  61. , persistent-template
  62. , persistent-test
  63. , bytestring
  64. , containers
  65. , fast-logger
  66. , hspec >= 2.4
  67. , HUnit
  68. , monad-logger
  69. , mysql
  70. , QuickCheck
  71. , quickcheck-instances
  72. , resourcet
  73. , text
  74. , time
  75. , transformers
  76. , unliftio-core
  77. default-language: Haskell2010