persistent-redis.cabal 3.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576
  1. name: persistent-redis
  2. version: 2.5.2.2
  3. license: BSD3
  4. license-file: LICENSE
  5. author: Pavel Ryzhov <paul@paulrz.cz>
  6. synopsis: Backend for persistent library using Redis.
  7. description: Based on the Redis package.
  8. category: Database
  9. stability: Experimental
  10. cabal-version: >= 1.10
  11. maintainer: Pavel Ryzhov <paul@paulrz.cz>
  12. build-type: Simple
  13. bug-reports: https://github.com/yesodweb/persistent/issues
  14. source-repository head
  15. type: git
  16. location: https://github.com/yesodweb/persistent.git
  17. library
  18. build-depends: base >= 4.9 && < 5
  19. , persistent >= 2.5 && < 3.0
  20. , aeson >= 1.0
  21. , binary >= 0.8 && < 0.9
  22. , bytestring >= 0.10.8 && < 0.11
  23. , hedis >= 0.9
  24. , http-api-data
  25. , mtl >= 2.2.1 && < 2.3
  26. , path-pieces >= 0.2
  27. , scientific >= 0.3.5 && < 0.4
  28. , text >= 1.2
  29. , time >= 1.6
  30. , transformers >= 0.5 && < 0.6
  31. , utf8-string >= 1.0 && < 1.1
  32. exposed-modules: Database.Persist.Redis
  33. other-modules: Database.Persist.Redis.Config
  34. Database.Persist.Redis.Exception
  35. Database.Persist.Redis.Internal
  36. Database.Persist.Redis.Parser
  37. Database.Persist.Redis.Store
  38. Database.Persist.Redis.Update
  39. ghc-options: -Wall
  40. default-language: Haskell2010
  41. test-suite basic
  42. type: exitcode-stdio-1.0
  43. main-is: tests/basic-test.hs
  44. build-depends: base >= 4.9 && < 5
  45. , persistent >= 2.10 && < 3.0
  46. , persistent-redis
  47. , persistent-template >= 2.7 && < 3.0
  48. , aeson >= 1.0
  49. , bytestring >= 0.10.8 && < 0.11
  50. , binary >= 0.8 && < 0.9
  51. , hedis >= 0.9
  52. , http-api-data
  53. , mtl >= 2.2.1 && < 2.3
  54. , path-pieces >= 0.2
  55. , scientific
  56. , template-haskell
  57. , text >= 1.2
  58. , time >= 1.6
  59. , transformers >= 0.5 && < 0.6
  60. , utf8-string >= 1.0 && < 1.1
  61. other-modules: Database.Persist.Redis
  62. Database.Persist.Redis.Config
  63. Database.Persist.Redis.Internal
  64. Database.Persist.Redis.Store
  65. Database.Persist.Redis.Parser
  66. Database.Persist.Redis.Update
  67. Database.Persist.Redis.Exception
  68. default-language: Haskell2010