s-cargot.cabal 1004 B

123456789101112131415161718192021222324252627282930
  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.Pretty,
  21. Data.SCargot.Basic,
  22. Data.SCargot.Comments,
  23. Data.SCargot.HaskLike,
  24. Data.SCargot.Tutorial
  25. -- other-modules:
  26. -- other-extensions:
  27. build-depends: base >=4.7 && <5, parsec, text, containers
  28. -- hs-source-dirs:
  29. default-language: Haskell2010