persistent-postgresql.cabal 2.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677
  1. name: persistent-postgresql
  2. version: 2.10.0
  3. license: MIT
  4. license-file: LICENSE
  5. author: Felipe Lessa, Michael Snoyman <michael@snoyman.com>
  6. maintainer: Michael Snoyman <michael@snoyman.com>
  7. synopsis: Backend for the persistent library using postgresql.
  8. description: Based on the postgresql-simple package
  9. category: Database, Yesod
  10. stability: Stable
  11. cabal-version: >= 1.10
  12. build-type: Simple
  13. homepage: http://www.yesodweb.com/book/persistent
  14. bug-reports: https://github.com/yesodweb/persistent/issues
  15. extra-source-files: ChangeLog.md
  16. library
  17. build-depends: base >= 4.9 && < 5
  18. , persistent >= 2.10 && < 3
  19. , aeson >= 1.0
  20. , blaze-builder
  21. , bytestring >= 0.10
  22. , conduit >= 1.2.12
  23. , containers >= 0.5
  24. , monad-logger >= 0.3.25
  25. , postgresql-simple >= 0.6.1 && < 0.7
  26. , postgresql-libpq >= 0.9.4.2 && < 0.10
  27. , resourcet >= 1.1.9
  28. , resource-pool
  29. , text >= 1.2
  30. , time >= 1.6
  31. , transformers >= 0.5
  32. , unliftio-core
  33. exposed-modules: Database.Persist.Postgresql
  34. , Database.Persist.Postgresql.JSON
  35. ghc-options: -Wall
  36. default-language: Haskell2010
  37. source-repository head
  38. type: git
  39. location: git://github.com/yesodweb/persistent.git
  40. test-suite test
  41. type: exitcode-stdio-1.0
  42. main-is: main.hs
  43. hs-source-dirs: test
  44. other-modules: PgInit
  45. ArrayAggTest
  46. EquivalentTypeTestPostgres
  47. JSONTest
  48. ghc-options: -Wall
  49. build-depends: base >= 4.9 && < 5
  50. , persistent
  51. , persistent-postgresql
  52. , persistent-qq
  53. , persistent-template
  54. , persistent-test
  55. , aeson
  56. , bytestring
  57. , containers
  58. , fast-logger
  59. , HUnit
  60. , hspec >= 2.4
  61. , hspec-expectations
  62. , monad-logger
  63. , QuickCheck
  64. , quickcheck-instances
  65. , resourcet
  66. , text
  67. , time
  68. , transformers
  69. , unliftio-core
  70. , unordered-containers
  71. , vector
  72. default-language: Haskell2010