persistent-template.cabal 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172
  1. name: persistent-template
  2. version: 2.7.1
  3. license: MIT
  4. license-file: LICENSE
  5. author: Michael Snoyman <michael@snoyman.com>
  6. maintainer: Michael Snoyman <michael@snoyman.com>, Greg Weber <greg@gregweber.info>
  7. synopsis: Type-safe, non-relational, multi-backend persistence.
  8. description: Hackage documentation generation is not reliable. For up to date documentation, please see: <http://www.stackage.org/package/persistent-template>.
  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: test/main.hs ChangeLog.md README.md
  16. library
  17. build-depends: base >= 4.9 && < 5
  18. , persistent >= 2.10 && < 3
  19. , aeson >= 1.0 && < 1.5
  20. , bytestring >= 0.10
  21. , containers
  22. , http-api-data >= 0.3.7
  23. , monad-control >= 1.0 && < 1.1
  24. , monad-logger
  25. , path-pieces
  26. , template-haskell >= 2.11
  27. , text >= 1.2
  28. , transformers >= 0.5 && < 0.6
  29. , unordered-containers
  30. exposed-modules: Database.Persist.TH
  31. ghc-options: -Wall
  32. default-language: Haskell2010
  33. test-suite test
  34. type: exitcode-stdio-1.0
  35. main-is: main.hs
  36. hs-source-dirs: test
  37. other-modules: TemplateTestImports
  38. ghc-options: -Wall
  39. build-depends: base >= 4.9 && < 5
  40. , persistent
  41. , persistent-template
  42. , aeson
  43. , bytestring
  44. , hspec >= 2.4
  45. , QuickCheck
  46. , text
  47. default-language: Haskell2010
  48. source-repository head
  49. type: git
  50. location: git://github.com/yesodweb/persistent.git
  51. benchmark persistent-th-bench
  52. ghc-options: -O2
  53. type: exitcode-stdio-1.0
  54. main-is: Main.hs
  55. hs-source-dirs: bench
  56. build-depends: base
  57. , persistent
  58. , persistent-template
  59. , criterion
  60. , deepseq
  61. , deepseq-generics
  62. , file-embed
  63. , text
  64. , template-haskell
  65. other-modules: Models
  66. default-language: Haskell2010