gdritter repos s-cargot / v0.1.0.0 s-cargot.cabal
v0.1.0.0

Tree @v0.1.0.0 (Download .tar.gz)

s-cargot.cabal @v0.1.0.0

f2aaf87
 
ebf5fe4
352b374
ebf5fe4
 
 
 
 
 
 
 
f2aaf87
 
 
ebf5fe4
 
f2aaf87
 
 
 
352b374
 
 
 
f2aaf87
ce4da3b
 
d8ba37b
 
 
352b374
 
c843acc
69205b4
352b374
 
719d0fe
 
 
 
d8ba37b
719d0fe
 
name:                s-cargot
version:             0.1.0.0
synopsis:            A flexible, extensible s-expression library.
homepage:            https://github.com/aisamanra/s-cargot
description:         S-Cargot is a library for working with s-expressions in
                     a modular and extensible way, opting for genericity and
                     flexibility instead of speed. Instead of understanding
                     one particular form of s-expression, the S-Cargot library
                     exposes tools for parsing or emitting different kinds of
                     s-expressions, including features not normally included
                     in an s-expression library like reader macros or tight
                     control over indentation in pretty-printing.
license:             BSD3
license-file:        LICENSE
author:              Getty Ritter
maintainer:          gettyritter@gmail.com
copyright:           2015 Getty Ritter
category:            Data
build-type:          Simple
cabal-version:       >=1.10

source-repository head
   type: git
   location: git://github.com/aisamanra/s-cargot.git

library
  exposed-modules:     Data.SCargot,
                       Data.SCargot.Repr,
                       Data.SCargot.Repr.Basic,
                       Data.SCargot.Repr.Rich,
                       Data.SCargot.Repr.WellFormed,
                       Data.SCargot.Parse,
                       Data.SCargot.Print,
                       Data.SCargot.Comments,
                       Data.SCargot.Common,
                       Data.SCargot.Language.Basic,
                       Data.SCargot.Language.HaskLike
  build-depends:       base        >=4.7 && <5,
                       parsec      >=3.1 && <4,
                       text        >=1.2 && <2,
                       containers  >=0.5 && <1
  default-language:    Haskell2010
  default-extensions:  CPP
  ghc-options:         -Wall