persistent-couchdb.cabal 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839
  1. name: persistent-couchdb
  2. version: 0.1.0
  3. license: BSD3
  4. license-file: LICENSE
  5. author: Pavel Dvořák <id@dqd.cz>
  6. maintainer: Greg Weber <greg@gregweber.info>
  7. synopsis: Backend for the persistent library using CouchDB.
  8. description: Based on the CouchDB package.
  9. category: Database, Yesod
  10. stability: Experimental
  11. cabal-version: >= 1.6
  12. build-type: Simple
  13. homepage: http://www.yesodweb.com/book/persistent
  14. bug-reports: https://github.com/yesodweb/persistent/issues
  15. library
  16. build-depends: base >= 4.6 && < 5
  17. , enumerator
  18. , pool
  19. , json
  20. , aeson
  21. , attoparsec
  22. , transformers-base
  23. , MonadCatchIO-transformers
  24. , transformers >= 0.2.1 && < 0.3
  25. , CouchDB >= 1.2 && < 1.3
  26. -- , couchdb-conduit >= 0.10 && < 0.11
  27. , persistent >= 1.0 && < 1.1
  28. , containers >= 0.2 && < 0.5
  29. , bytestring >= 0.9 && < 0.10
  30. , text >= 0.7 && < 0.12
  31. , monad-control >= 0.3 && < 0.4
  32. , time >= 1.1
  33. -- , data-object >= 0.3 && < 0.4
  34. -- , neither >= 0.3 && < 0.4
  35. , SHA >= 1.5
  36. exposed-modules: Database.Persist.CouchDB
  37. ghc-options: -Wall