s-cargot.cabal 962 B

1234567891011121314151617181920212223242526272829
  1. name: s-cargot
  2. version: 0.1.0.0
  3. -- synopsis:
  4. -- description:
  5. license: BSD3
  6. license-file: LICENSE
  7. author: Getty Ritter
  8. maintainer: gdritter@galois.com
  9. -- copyright:
  10. category: Data
  11. build-type: Simple
  12. -- extra-source-files:
  13. cabal-version: >=1.10
  14. library
  15. exposed-modules: Data.SCargot.Repr,
  16. Data.SCargot.Repr.Basic,
  17. Data.SCargot.Repr.Rich,
  18. Data.SCargot.Repr.WellFormed,
  19. Data.SCargot.General,
  20. Data.SCargot.Basic,
  21. Data.SCargot.Comments,
  22. Data.SCargot.HaskLike,
  23. Data.SCargot.Tutorial
  24. -- other-modules:
  25. -- other-extensions:
  26. build-depends: base >=4.7 && <4.8, parsec, text, containers
  27. -- hs-source-dirs:
  28. default-language: Haskell2010