s-cargot.cabal 2.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. name: s-cargot
  2. version: 0.1.0.0
  3. synopsis: A flexible, extensible s-expression library.
  4. homepage: https://github.com/aisamanra/s-cargot
  5. description: S-Cargot is a library for working with s-expressions in
  6. a modular and extensible way, opting for genericity and
  7. flexibility instead of speed. Instead of understanding
  8. one particular form of s-expression, the S-Cargot library
  9. exposes tools for parsing or emitting different kinds of
  10. s-expressions, including features not normally included
  11. in an s-expression library like reader macros or tight
  12. control over indentation in pretty-printing.
  13. license: BSD3
  14. license-file: LICENSE
  15. author: Getty Ritter
  16. maintainer: gettyritter@gmail.com
  17. copyright: 2015 Getty Ritter
  18. category: Data
  19. build-type: Simple
  20. cabal-version: >=1.10
  21. source-repository head
  22. type: git
  23. location: git://github.com/aisamanra/s-cargot.git
  24. library
  25. exposed-modules: Data.SCargot,
  26. Data.SCargot.Repr,
  27. Data.SCargot.Repr.Basic,
  28. Data.SCargot.Repr.Rich,
  29. Data.SCargot.Repr.WellFormed,
  30. Data.SCargot.Parse,
  31. Data.SCargot.Print,
  32. Data.SCargot.Comments,
  33. Data.SCargot.Common,
  34. Data.SCargot.Language.Basic,
  35. Data.SCargot.Language.HaskLike
  36. build-depends: base >=4.7 && <5,
  37. parsec >=3.1 && <4,
  38. text >=1.2 && <2,
  39. containers >=0.5 && <1
  40. default-language: Haskell2010
  41. default-extensions: CPP
  42. ghc-options: -Wall
  43. executable example
  44. hs-source-dirs: example
  45. main-is: example.hs
  46. build-depends: base >=4.7 && <5,
  47. containers >=0.5 && <1,
  48. parsec >=3.1 && <4,
  49. s-cargot ,
  50. text >=1.2 && <2
  51. default-language: Haskell2010
  52. ghc-options: -threaded -rtsopts -with-rtsopts=-N