yesod.cabal 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  1. name: yesod
  2. version: 1.4.3
  3. license: MIT
  4. license-file: LICENSE
  5. author: Michael Snoyman <michael@snoyman.com>
  6. maintainer: Michael Snoyman <michael@snoyman.com>
  7. synopsis: Creation of type-safe, RESTful web applications.
  8. description: API docs and the README are available at <http://www.stackage.org/package/yesod>
  9. category: Web, Yesod
  10. stability: Stable
  11. cabal-version: >= 1.6
  12. build-type: Simple
  13. homepage: http://www.yesodweb.com/
  14. extra-source-files: README.md ChangeLog.md
  15. library
  16. if os(windows)
  17. cpp-options: -DWINDOWS
  18. build-depends: base >= 4.3 && < 5
  19. , yesod-core >= 1.4 && < 1.5
  20. , yesod-auth >= 1.4 && < 1.5
  21. , yesod-persistent >= 1.4 && < 1.5
  22. , yesod-form >= 1.4 && < 1.5
  23. , monad-control >= 0.3 && < 1.1
  24. , transformers >= 0.2.2
  25. , wai >= 1.3
  26. , wai-extra >= 1.3
  27. , warp >= 1.3
  28. , blaze-html >= 0.5
  29. , blaze-markup >= 0.5.1
  30. , aeson
  31. , safe
  32. , data-default
  33. , unordered-containers
  34. , yaml >= 0.8.17
  35. , text
  36. , directory
  37. , template-haskell
  38. , bytestring
  39. , monad-logger
  40. , fast-logger
  41. , conduit-extra
  42. , shakespeare
  43. , streaming-commons
  44. , wai-logger
  45. , semigroups
  46. exposed-modules: Yesod
  47. , Yesod.Default.Config
  48. , Yesod.Default.Config2
  49. , Yesod.Default.Main
  50. , Yesod.Default.Util
  51. , Yesod.Default.Handlers
  52. ghc-options: -Wall
  53. if !os(windows)
  54. build-depends: unix
  55. source-repository head
  56. type: git
  57. location: https://github.com/yesodweb/yesod