collage.cabal 1.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. cabal-version: 2.2
  2. name: collage
  3. version: 0.1.0.0
  4. -- synopsis:
  5. -- description:
  6. license: BSD-3-Clause
  7. author: Getty Ritter <gettylefou@gmail.com>
  8. maintainer: Getty Ritter <gettylefou@gmail.com>
  9. copyright: @2018 Getty Ritter
  10. -- category:
  11. build-type: Simple
  12. library
  13. hs-source-dirs: src
  14. ghc-options: -Wall
  15. build-depends: base >=4.7 && <5
  16. , adnot
  17. , bytestring
  18. , containers
  19. , directory
  20. , filepath
  21. , optparse-applicative
  22. , process
  23. , text
  24. , vector
  25. default-language: Haskell2010
  26. default-extensions: ScopedTypeVariables
  27. exposed-modules: Collage
  28. , Collage.Config
  29. , Collage.Opts
  30. , Collage.Commands.Test
  31. , Collage.Commands.Splice
  32. executable collage
  33. hs-source-dirs: collage
  34. main-is: Main.hs
  35. default-language: Haskell2010
  36. default-extensions: ScopedTypeVariables
  37. ghc-options: -Wall
  38. build-depends: base >=4.7 && <5
  39. , collage