yesod-persistent.cabal 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. name: yesod-persistent
  2. version: 1.4.0.4
  3. license: MIT
  4. license-file: LICENSE
  5. author: Michael Snoyman <michael@snoyman.com>
  6. maintainer: Michael Snoyman <michael@snoyman.com>
  7. synopsis: Some helpers for using Persistent from Yesod.
  8. category: Web, Yesod, Database
  9. stability: Stable
  10. cabal-version: >= 1.8
  11. build-type: Simple
  12. homepage: http://www.yesodweb.com/
  13. description: API docs and the README are available at <http://www.stackage.org/package/yesod-persistent>
  14. extra-source-files: README.md ChangeLog.md
  15. library
  16. build-depends: base >= 4 && < 5
  17. , yesod-core >= 1.4.0 && < 1.5
  18. , persistent >= 2.1 && < 2.6
  19. , persistent-template >= 2.1 && < 2.6
  20. , transformers >= 0.2.2
  21. , blaze-builder
  22. , conduit
  23. , resourcet >= 0.4.5
  24. , resource-pool
  25. exposed-modules: Yesod.Persist
  26. Yesod.Persist.Core
  27. ghc-options: -Wall
  28. test-suite test
  29. type: exitcode-stdio-1.0
  30. main-is: Spec.hs
  31. hs-source-dirs: test
  32. other-modules: Yesod.PersistSpec
  33. build-depends: base
  34. , hspec
  35. , wai-extra
  36. , yesod-core
  37. , persistent-sqlite
  38. , yesod-persistent
  39. , conduit
  40. , blaze-builder
  41. , persistent
  42. , text
  43. source-repository head
  44. type: git
  45. location: https://github.com/yesodweb/yesod