charter.cabal 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738
  1. name: charter
  2. version: 0.1.0.0
  3. -- synopsis:
  4. -- description:
  5. license: BSD3
  6. license-file: LICENSE
  7. author: Getty Ritter <gdritter@galois.com>
  8. maintainer: Getty Ritter <gdritter@galois.com>
  9. copyright: ©2018 Getty Ritter
  10. -- category:
  11. build-type: Simple
  12. cabal-version: >= 1.14
  13. library
  14. exposed-modules: Charter
  15. other-modules: Templates
  16. , Types
  17. hs-source-dirs: src
  18. build-depends: base >=4.7 && <5
  19. , directory
  20. , filepath
  21. , process
  22. , text
  23. , lens-family-core
  24. , lens-family-th
  25. default-language: Haskell2010
  26. default-extensions: ScopedTypeVariables
  27. executable charter
  28. hs-source-dirs: charter
  29. main-is: Main.hs
  30. default-extensions: ScopedTypeVariables
  31. ghc-options: -Wall
  32. build-depends: base >=4.7 && <5
  33. , charter
  34. , text
  35. , lens-family-core
  36. default-language: Haskell2010