packages feed

HsSyck-0.43: HsSyck.cabal

Name:                HsSyck
Version:             0.43
Category:            Text
Synopsis:            Fast, lightweight YAML loader and dumper
Description:         This is a simple YAML ('Yet Another Markup Language') processor,
                     used by the Pugs project for handling data serialization; this can be
                     useful for optimization and caching purposes.
                     .
                     This is an interface to the @syck@ C library for parsing and
                     dumping YAML data. It lets you transform textual YAML data into an
                     object of type 'YamlNode', and vice versa, fast.

-- License is really "MIT", but Cabal doesn't have that constant yet
License:             BSD3
License-File:        LICENSE
Author:              Audrey Tang
Maintainer:          audreyt@audreyt.org
Copyright:           Audrey Tang, Gaal Yahas, 2005, 2006, 2007, 2008

Exposed-modules:     Data.Yaml.Syck

Build-Depends:       base, bytestring>=0.9.0.1
Build-Type:          Simple
Tested-With:         GHC==6.8.2

extensions:          ForeignFunctionInterface, MagicHash, RecursiveDo,
                     DeriveDataTypeable, TypeSynonymInstances, PatternGuards
ghc-options:         -funbox-strict-fields

data-files:          Changes
c-sources:           syck/bytecode.c syck/emitter.c syck/gram.c syck/handler.c
                     syck/implicit.c syck/node.c syck/syck.c syck/syck_st.c syck/token.c
                     syck/yaml2byte.c
extra-source-files:  syck/syck.h syck/syck_st.h syck/gram.h syck/yamlbyte.h
include-dirs:        syck