Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.
 
 

32 rader
918 B

  1. -- Initial scotty-example.cabal generated by cabal init. For further
  2. -- documentation, see http://haskell.org/cabal/users-guide/
  3. name: scotty-example
  4. version: 0.1.0.0
  5. -- synopsis:
  6. -- description:
  7. license: GPL-2
  8. license-file: LICENSE
  9. author: Julian Ospald
  10. maintainer: hasufell@posteo.de
  11. -- copyright:
  12. -- category:
  13. build-type: Simple
  14. extra-source-files: ChangeLog.md
  15. cabal-version: >=1.10
  16. executable scotty-example
  17. main-is: Main.hs
  18. other-modules: Helpers
  19. -- other-extensions:
  20. build-depends: base >=4.9 && <4.10,
  21. bytestring,
  22. scotty,
  23. http-types,
  24. text,
  25. wai,
  26. wai-extra,
  27. utf8-string
  28. hs-source-dirs: src
  29. default-language: Haskell2010