s-cargot.cabal 1.6 KB

123456789101112131415161718192021222324252627282930313233343536
  1. name: s-cargot
  2. version: 0.1.0.0
  3. synopsis: A flexible, extensible s-expression library.
  4. description: S-Cargot is a library for working with s-expressions in
  5. a modular and extensible way, opting for genericity and
  6. flexibility instead of speed. Instead of understanding
  7. one particular form of s-expression, the S-Cargot library
  8. exposes tools for parsing or emitting different kinds of
  9. s-expressions, including features not normally included
  10. in an s-expression library like reader macros or tight
  11. control over indentation in pretty-printing.
  12. license: BSD3
  13. license-file: LICENSE
  14. author: Getty Ritter
  15. maintainer: gettyritter@gmail.com
  16. copyright: 2015 Getty Ritter
  17. category: Data
  18. build-type: Simple
  19. cabal-version: >=1.10
  20. library
  21. exposed-modules: Data.SCargot.Repr,
  22. Data.SCargot.Repr.Basic,
  23. Data.SCargot.Repr.Rich,
  24. Data.SCargot.Repr.WellFormed,
  25. Data.SCargot.General,
  26. Data.SCargot.Pretty,
  27. Data.SCargot.Basic,
  28. Data.SCargot.Comments,
  29. Data.SCargot.Common,
  30. Data.SCargot.HaskLike
  31. build-depends: base >=4.7 && <5,
  32. parsec,
  33. text,
  34. containers
  35. default-language: Haskell2010